Pop\Form\Fields::__get PHP Method

__get() public method

Get method to return the value of fields[$name].
public __get ( string $name ) : mixed
$name string
return mixed
    public function __get($name)
    {
        return isset($this->fields[$name]) ? $this->fields[$name] : null;
    }