AdamWathan\Form\Elements\RadioButton::__construct PHP Method

__construct() public method

public __construct ( $name, $value = null )
    public function __construct($name, $value = null)
    {
        parent::__construct($name);
        if (is_null($value)) {
            $value = $name;
        }
        $this->setValue($value);
    }
RadioButton