ReplaceNegativeKeywordsRequest.fromJson constructor

ReplaceNegativeKeywordsRequest.fromJson(
  1. Map json_
)

Implementation

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