copyWithWrapped method
Implementation
SpeakerTrack copyWithWrapped(
{Wrapped<String>? id,
Wrapped<DubbingMediaReference>? mediaRef,
Wrapped<String>? speakerName,
Wrapped<Map<String, dynamic>>? voices,
Wrapped<List<String>>? segments}) {
return SpeakerTrack(
id: (id != null ? id.value : this.id),
mediaRef: (mediaRef != null ? mediaRef.value : this.mediaRef),
speakerName:
(speakerName != null ? speakerName.value : this.speakerName),
voices: (voices != null ? voices.value : this.voices),
segments: (segments != null ? segments.value : this.segments));
}