copyWith method
Implementation
SpeakerSegment copyWith(
{String? id,
double? startTime,
double? endTime,
String? text,
Map<String, dynamic>? dubs}) {
return SpeakerSegment(
id: id ?? this.id,
startTime: startTime ?? this.startTime,
endTime: endTime ?? this.endTime,
text: text ?? this.text,
dubs: dubs ?? this.dubs);
}