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