GoogleCloudDialogflowCxV3AdvancedSettingsDtmfSettings.fromJson constructor

GoogleCloudDialogflowCxV3AdvancedSettingsDtmfSettings.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowCxV3AdvancedSettingsDtmfSettings.fromJson(core.Map json_)
    : this(
        enabled: json_.containsKey('enabled')
            ? json_['enabled'] as core.bool
            : null,
        finishDigit: json_.containsKey('finishDigit')
            ? json_['finishDigit'] as core.String
            : null,
        maxDigits: json_.containsKey('maxDigits')
            ? json_['maxDigits'] as core.int
            : null,
      );