copyWith method
SpeakerSeparationResponseModel
copyWith({
- String? voiceId,
- String? sampleId,
- SpeakerSeparationResponseModelStatus? status,
- dynamic speakers,
- dynamic selectedSpeakerIds,
Implementation
SpeakerSeparationResponseModel copyWith(
{String? voiceId,
String? sampleId,
enums.SpeakerSeparationResponseModelStatus? status,
dynamic speakers,
dynamic selectedSpeakerIds}) {
return SpeakerSeparationResponseModel(
voiceId: voiceId ?? this.voiceId,
sampleId: sampleId ?? this.sampleId,
status: status ?? this.status,
speakers: speakers ?? this.speakers,
selectedSpeakerIds: selectedSpeakerIds ?? this.selectedSpeakerIds);
}