speechRecognitionResultError property

SpeechRecognitionResultError? speechRecognitionResultError

The speech recognition failed

Implementation

SpeechRecognitionResultError? get speechRecognitionResultError {
  if (this is SpeechRecognitionResultError) {
    return this as SpeechRecognitionResultError;
  }
  return null;
}