copyWith method

BodyUpdatePVCVoiceSampleV1VoicesPvcVoiceIdSamplesSampleIdPost copyWith({
  1. bool? removeBackgroundNoise,
  2. dynamic selectedSpeakerIds,
  3. dynamic trimStartTime,
  4. 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);
}