copyWith method
Implementation
BodySpeechToSpeechV1SpeechToSpeechVoiceIdPost copyWith(
{String? audio,
String? modelId,
dynamic voiceSettings,
dynamic seed,
bool? removeBackgroundNoise,
dynamic fileFormat}) {
return BodySpeechToSpeechV1SpeechToSpeechVoiceIdPost(
audio: audio ?? this.audio,
modelId: modelId ?? this.modelId,
voiceSettings: voiceSettings ?? this.voiceSettings,
seed: seed ?? this.seed,
removeBackgroundNoise:
removeBackgroundNoise ?? this.removeBackgroundNoise,
fileFormat: fileFormat ?? this.fileFormat);
}