copyWithWrapped method

SpeechToTextCharacterResponseModel copyWithWrapped({
  1. Wrapped<String>? text,
  2. Wrapped? start,
  3. Wrapped? end,
})

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));
}