ListNegativeKeywordListsResponse.fromJson constructor
ListNegativeKeywordListsResponse.fromJson(
- Map json_
Implementation
ListNegativeKeywordListsResponse.fromJson(core.Map json_)
: this(
negativeKeywordLists: json_.containsKey('negativeKeywordLists')
? (json_['negativeKeywordLists'] as core.List)
.map((value) => NegativeKeywordList.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
nextPageToken: json_.containsKey('nextPageToken')
? json_['nextPageToken'] as core.String
: null,
);