GoogleCloudAiplatformV1SpeakerVoiceConfig.fromJson constructor

GoogleCloudAiplatformV1SpeakerVoiceConfig.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1SpeakerVoiceConfig.fromJson(core.Map json_)
  : this(
      speaker: json_['speaker'] as core.String?,
      voiceConfig: json_.containsKey('voiceConfig')
          ? GoogleCloudAiplatformV1VoiceConfig.fromJson(
              json_['voiceConfig'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );