GoogleCloudContactcenterinsightsV1ConversationLevelSilence.fromJson constructor

GoogleCloudContactcenterinsightsV1ConversationLevelSilence.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContactcenterinsightsV1ConversationLevelSilence.fromJson(
    core.Map json_)
    : this(
        silenceDuration: json_.containsKey('silenceDuration')
            ? json_['silenceDuration'] as core.String
            : null,
        silencePercentage: json_.containsKey('silencePercentage')
            ? (json_['silencePercentage'] as core.num).toDouble()
            : null,
      );