GoogleCloudAiplatformV1SpeechConfig.fromJson constructor
GoogleCloudAiplatformV1SpeechConfig.fromJson(
- Map json_
Implementation
GoogleCloudAiplatformV1SpeechConfig.fromJson(core.Map json_)
: this(
languageCode: json_['languageCode'] as core.String?,
voiceConfig:
json_.containsKey('voiceConfig')
? GoogleCloudAiplatformV1VoiceConfig.fromJson(
json_['voiceConfig'] as core.Map<core.String, core.dynamic>,
)
: null,
);