SpeechRecognitionEventType enum

Inheritance

Constructors

SpeechRecognitionEventType()
const

Values

finalRecognitionEvent → const SpeechRecognitionEventType

The final transcription of speech for a recognition session. This is the only recognition event when not receiving partial results and the last when receiving partial results.

partialRecognitionEvent → const SpeechRecognitionEventType

Sent every time the recognizer recognizes some speech on the input if partial events were requested.

errorEvent → const SpeechRecognitionEventType

Sent when there is an error from the platform speech recognizer.

statusChangeEvent → const SpeechRecognitionEventType

Sent when listening starts after a call to listen and when it ends after a timeout, cancel or stop call. Use the isListening property of the event to determine whether this is the start or end of a listening session.

doneEvent → const SpeechRecognitionEventType

Sent when listening is complete and all speech recognition results have been sent.

soundLevelChangeEvent → const SpeechRecognitionEventType

Sent whenever the sound level on the input changes during a listen session.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<SpeechRecognitionEventType>
A constant List of the values in this enum, in order of their declaration.