copyWith method
Implementation
SpeakerTrack copyWith(
{String? id,
DubbingMediaReference? mediaRef,
String? speakerName,
Map<String, dynamic>? voices,
List<String>? segments}) {
return SpeakerTrack(
id: id ?? this.id,
mediaRef: mediaRef ?? this.mediaRef,
speakerName: speakerName ?? this.speakerName,
voices: voices ?? this.voices,
segments: segments ?? this.segments);
}