copyWithWrapped method
Implementation
BodyUpdatePVCVoiceSampleV1VoicesPvcVoiceIdSamplesSampleIdPost copyWithWrapped(
{Wrapped<bool?>? removeBackgroundNoise,
Wrapped<dynamic>? selectedSpeakerIds,
Wrapped<dynamic>? trimStartTime,
Wrapped<dynamic>? trimEndTime}) {
return BodyUpdatePVCVoiceSampleV1VoicesPvcVoiceIdSamplesSampleIdPost(
removeBackgroundNoise: (removeBackgroundNoise != null
? removeBackgroundNoise.value
: this.removeBackgroundNoise),
selectedSpeakerIds: (selectedSpeakerIds != null
? selectedSpeakerIds.value
: this.selectedSpeakerIds),
trimStartTime:
(trimStartTime != null ? trimStartTime.value : this.trimStartTime),
trimEndTime:
(trimEndTime != null ? trimEndTime.value : this.trimEndTime));
}