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