Tests whether the form has the given field based on the fully qualified name.
public function has(string $name) : bool { try { $this->get($name); return true; } catch (\InvalidArgumentException) { return false; } }