GoogleCloudContactcenterinsightsV1PhraseMatchData.fromJson constructor

GoogleCloudContactcenterinsightsV1PhraseMatchData.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContactcenterinsightsV1PhraseMatchData.fromJson(core.Map json_)
    : this(
        displayName: json_.containsKey('displayName')
            ? json_['displayName'] as core.String
            : null,
        phraseMatcher: json_.containsKey('phraseMatcher')
            ? json_['phraseMatcher'] as core.String
            : null,
      );