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