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