copyWith method

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

Implementation

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