DirkGroenen\Pinterest\Models\Model::__isset PHP Method

__isset() public method

Check if the model's attribute is set
public __isset ( $key ) : boolean
$key
return boolean
    public function __isset($key)
    {
        return array_key_exists($key, $this->attributes);
    }