copyWithWrapped method
Implementation
ForcedAlignmentCharacterResponseModel copyWithWrapped(
{Wrapped<String>? text, Wrapped<double>? start, Wrapped<double>? end}) {
return ForcedAlignmentCharacterResponseModel(
text: (text != null ? text.value : this.text),
start: (start != null ? start.value : this.start),
end: (end != null ? end.value : this.end));
}