GoogleCloudContactcenterinsightsV1ListPhraseMatchersResponse.fromJson constructor

GoogleCloudContactcenterinsightsV1ListPhraseMatchersResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContactcenterinsightsV1ListPhraseMatchersResponse.fromJson(
  core.Map json_,
) : this(
      nextPageToken: json_['nextPageToken'] as core.String?,
      phraseMatchers: (json_['phraseMatchers'] as core.List?)
          ?.map(
            (value) =>
                GoogleCloudContactcenterinsightsV1PhraseMatcher.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
          )
          .toList(),
    );