toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final context = this.context;
final items = this.items;
final kind = this.kind;
final promotions = this.promotions;
final queries = this.queries;
final searchInformation = this.searchInformation;
final spelling = this.spelling;
final url = this.url;
return {
'context': ?context,
'items': ?items,
'kind': ?kind,
'promotions': ?promotions,
'queries': ?queries,
'searchInformation': ?searchInformation,
'spelling': ?spelling,
'url': ?url,
};
}