copyWith method

SpeechRecognitionResultPending copyWith({
  1. String? partialText,
})

Implementation

SpeechRecognitionResultPending copyWith({String? partialText}) =>
    SpeechRecognitionResultPending(
      partialText: partialText ?? this.partialText,
    );