Crummy\Phlack\Message\Field::__construct PHP Method

__construct() public method

Constructor.
public __construct ( string $title = null, string $value = null, boolean $isShort = null )
$title string
$value string
$isShort boolean
    public function __construct($title = null, $value = null, $isShort = null)
    {
        parent::__construct(['title' => $title, 'value' => $value, 'short' => $isShort]);
    }