GoogleCloudDialogflowCxV3AdvancedSettingsSpeechSettings.fromJson constructor

GoogleCloudDialogflowCxV3AdvancedSettingsSpeechSettings.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowCxV3AdvancedSettingsSpeechSettings.fromJson(
  core.Map json_,
) : this(
      endpointerSensitivity: json_['endpointerSensitivity'] as core.int?,
      models: (json_['models'] as core.Map<core.String, core.dynamic>?)?.map(
        (key, value) => core.MapEntry(key, value as core.String),
      ),
      noSpeechTimeout: json_['noSpeechTimeout'] as core.String?,
      useTimeoutBasedEndpointing:
          json_['useTimeoutBasedEndpointing'] as core.bool?,
    );