copyWith method
Implementation
ForcedAlignmentWordResponseModel copyWith(
{String? text, double? start, double? end}) {
return ForcedAlignmentWordResponseModel(
text: text ?? this.text,
start: start ?? this.start,
end: end ?? this.end);
}