copyWith method
BodyUpdatePVCVoiceSampleV1VoicesPvcVoiceIdSamplesSampleIdPost
copyWith({
- bool? removeBackgroundNoise,
- dynamic selectedSpeakerIds,
- dynamic trimStartTime,
- dynamic trimEndTime,
Implementation
BodyUpdatePVCVoiceSampleV1VoicesPvcVoiceIdSamplesSampleIdPost copyWith(
{bool? removeBackgroundNoise,
dynamic selectedSpeakerIds,
dynamic trimStartTime,
dynamic trimEndTime}) {
return BodyUpdatePVCVoiceSampleV1VoicesPvcVoiceIdSamplesSampleIdPost(
removeBackgroundNoise:
removeBackgroundNoise ?? this.removeBackgroundNoise,
selectedSpeakerIds: selectedSpeakerIds ?? this.selectedSpeakerIds,
trimStartTime: trimStartTime ?? this.trimStartTime,
trimEndTime: trimEndTime ?? this.trimEndTime);
}