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