copyWith method

SpeechToTextCharacterResponseModel copyWith({
  1. String? text,
  2. dynamic start,
  3. dynamic end,
})

Implementation

SpeechToTextCharacterResponseModel copyWith(
    {String? text, dynamic start, dynamic end}) {
  return SpeechToTextCharacterResponseModel(
      text: text ?? this.text,
      start: start ?? this.start,
      end: end ?? this.end);
}