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