speechRecognitionResultPending property

SpeechRecognitionResultPending? speechRecognitionResultPending

The speech recognition is ongoing

Implementation

SpeechRecognitionResultPending? get speechRecognitionResultPending {
  if (this is SpeechRecognitionResultPending) {
    return this as SpeechRecognitionResultPending;
  }
  return null;
}