copyWithWrapped method
Implementation
BodySpeechToSpeechStreamingV1SpeechToSpeechVoiceIdStreamPost copyWithWrapped(
{Wrapped<String>? audio,
Wrapped<String?>? modelId,
Wrapped<dynamic>? voiceSettings,
Wrapped<dynamic>? seed,
Wrapped<bool?>? removeBackgroundNoise,
Wrapped<dynamic>? fileFormat}) {
return BodySpeechToSpeechStreamingV1SpeechToSpeechVoiceIdStreamPost(
audio: (audio != null ? audio.value : this.audio),
modelId: (modelId != null ? modelId.value : this.modelId),
voiceSettings:
(voiceSettings != null ? voiceSettings.value : this.voiceSettings),
seed: (seed != null ? seed.value : this.seed),
removeBackgroundNoise: (removeBackgroundNoise != null
? removeBackgroundNoise.value
: this.removeBackgroundNoise),
fileFormat: (fileFormat != null ? fileFormat.value : this.fileFormat));
}