SearchResponse.fromJson constructor
SearchResponse.fromJson(
- Map json_
Implementation
SearchResponse.fromJson(core.Map json_)
: this(
P_context: json_.containsKey('@context') ? json_['@context'] : null,
P_type: json_.containsKey('@type') ? json_['@type'] : null,
itemListElement: json_.containsKey('itemListElement')
? json_['itemListElement'] as core.List
: null,
);