copyWith method

  1. @override
SpeechRecognitionResultError copyWith({
  1. TdError? error,
})
override

Implementation

@override
SpeechRecognitionResultError copyWith({
  TdError? error,
}) =>
    SpeechRecognitionResultError(
      error: error ?? this.error,
    );