GoogleCloudContactcenterinsightsV1DialogflowInteractionData.fromJson constructor

GoogleCloudContactcenterinsightsV1DialogflowInteractionData.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContactcenterinsightsV1DialogflowInteractionData.fromJson(
    core.Map json_)
    : this(
        confidence: json_.containsKey('confidence')
            ? (json_['confidence'] as core.num).toDouble()
            : null,
        dialogflowIntentId: json_.containsKey('dialogflowIntentId')
            ? json_['dialogflowIntentId'] as core.String
            : null,
      );