Apple_Actions\Index\Section::get_data PHP Method

get_data() public method

Get a specific element of section data from Apple News
public get_data ( string $key, string $default = null ) : mixed
$key string
$default string
return mixed
    public function get_data($key, $default = null)
    {
        $section = $this->perform();
        return !isset($section->data->{$key}) ? $default : $section->data->{$key};
    }