copyWithWrapped method
BodyDubAVideoOrAnAudioFileV1DubbingPost
copyWithWrapped({
- Wrapped? file,
- Wrapped? csvFile,
- Wrapped? foregroundAudioFile,
- Wrapped? backgroundAudioFile,
- Wrapped? name,
- Wrapped? sourceUrl,
- Wrapped<
String?> ? sourceLang, - Wrapped? targetLang,
- Wrapped<
int?> ? numSpeakers, - Wrapped<
bool?> ? watermark, - Wrapped? startTime,
- Wrapped? endTime,
- Wrapped<
bool?> ? highestResolution, - Wrapped<
bool?> ? dropBackgroundAudio, - Wrapped? useProfanityFilter,
- Wrapped<
bool?> ? dubbingStudio, - Wrapped<
bool?> ? disableVoiceCloning, - Wrapped? mode,
Implementation
BodyDubAVideoOrAnAudioFileV1DubbingPost copyWithWrapped(
{Wrapped<dynamic>? file,
Wrapped<dynamic>? csvFile,
Wrapped<dynamic>? foregroundAudioFile,
Wrapped<dynamic>? backgroundAudioFile,
Wrapped<dynamic>? name,
Wrapped<dynamic>? sourceUrl,
Wrapped<String?>? sourceLang,
Wrapped<dynamic>? targetLang,
Wrapped<int?>? numSpeakers,
Wrapped<bool?>? watermark,
Wrapped<dynamic>? startTime,
Wrapped<dynamic>? endTime,
Wrapped<bool?>? highestResolution,
Wrapped<bool?>? dropBackgroundAudio,
Wrapped<dynamic>? useProfanityFilter,
Wrapped<bool?>? dubbingStudio,
Wrapped<bool?>? disableVoiceCloning,
Wrapped<dynamic>? mode}) {
return BodyDubAVideoOrAnAudioFileV1DubbingPost(
file: (file != null ? file.value : this.file),
csvFile: (csvFile != null ? csvFile.value : this.csvFile),
foregroundAudioFile: (foregroundAudioFile != null
? foregroundAudioFile.value
: this.foregroundAudioFile),
backgroundAudioFile: (backgroundAudioFile != null
? backgroundAudioFile.value
: this.backgroundAudioFile),
name: (name != null ? name.value : this.name),
sourceUrl: (sourceUrl != null ? sourceUrl.value : this.sourceUrl),
sourceLang: (sourceLang != null ? sourceLang.value : this.sourceLang),
targetLang: (targetLang != null ? targetLang.value : this.targetLang),
numSpeakers:
(numSpeakers != null ? numSpeakers.value : this.numSpeakers),
watermark: (watermark != null ? watermark.value : this.watermark),
startTime: (startTime != null ? startTime.value : this.startTime),
endTime: (endTime != null ? endTime.value : this.endTime),
highestResolution: (highestResolution != null
? highestResolution.value
: this.highestResolution),
dropBackgroundAudio: (dropBackgroundAudio != null
? dropBackgroundAudio.value
: this.dropBackgroundAudio),
useProfanityFilter: (useProfanityFilter != null
? useProfanityFilter.value
: this.useProfanityFilter),
dubbingStudio:
(dubbingStudio != null ? dubbingStudio.value : this.dubbingStudio),
disableVoiceCloning: (disableVoiceCloning != null
? disableVoiceCloning.value
: this.disableVoiceCloning),
mode: (mode != null ? mode.value : this.mode));
}