GoogleCloudDialogflowCxV3TextToSpeechSettings.fromJson constructor
GoogleCloudDialogflowCxV3TextToSpeechSettings.fromJson(
- Map json_
Implementation
GoogleCloudDialogflowCxV3TextToSpeechSettings.fromJson(core.Map json_)
: this(
synthesizeSpeechConfigs:
(json_['synthesizeSpeechConfigs']
as core.Map<core.String, core.dynamic>?)
?.map(
(key, value) => core.MapEntry(
key,
GoogleCloudDialogflowCxV3SynthesizeSpeechConfig.fromJson(
value as core.Map<core.String, core.dynamic>,
),
),
),
);