speechRecognitionResultPending property
The speech recognition is ongoing
Implementation
SpeechRecognitionResultPending? get speechRecognitionResultPending {
if (this is SpeechRecognitionResultPending) {
return this as SpeechRecognitionResultPending;
}
return null;
}