copyWith method
Implementation
SegmentCreatePayload copyWith(
{double? startTime,
double? endTime,
dynamic text,
dynamic translations}) {
return SegmentCreatePayload(
startTime: startTime ?? this.startTime,
endTime: endTime ?? this.endTime,
text: text ?? this.text,
translations: translations ?? this.translations);
}