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