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