SpeechRecognition class - dart:html library (original) (raw)
Inheritance
- Object
- EventTarget
- SpeechRecognition
Annotations
- @SupportedBrowser(SupportedBrowser.CHROME, '25')
- @Native("SpeechRecognition,webkitSpeechRecognition")
Constructors
factory
Properties
audioTrack ↔ MediaStreamTrack?
getter/setter pair
continuous ↔ bool?
getter/setter pair
getter/setter pair
The hash code for this object.
no setterinherited
getter/setter pair
getter/setter pair
getter/setter pair
This is an ease-of-use accessor for event streams which should only be used when an explicit accessor is not available.
no setterinherited
Stream of audioend
events handled by this SpeechRecognition.
no setter
Stream of audiostart
events handled by this SpeechRecognition.
no setter
Stream of end
events handled by this SpeechRecognition.
no setter
onError → Stream<SpeechRecognitionError>
Stream of error
events handled by this SpeechRecognition.
no setter
onNoMatch → Stream<SpeechRecognitionEvent>
Stream of nomatch
events handled by this SpeechRecognition.
no setter
onResult → Stream<SpeechRecognitionEvent>
Stream of result
events handled by this SpeechRecognition.
no setter
Stream of soundend
events handled by this SpeechRecognition.
no setter
Stream of soundstart
events handled by this SpeechRecognition.
no setter
Stream of speechend
events handled by this SpeechRecognition.
no setter
Stream of speechstart
events handled by this SpeechRecognition.
no setter
Stream of start
events handled by this SpeechRecognition.
no setter
A representation of the runtime type of the object.
no setterinherited
Methods
abort()→ void
addEventListener(String type, EventListener? listener, [bool? useCapture])→ void
inherited
dispatchEvent(Event event)→ bool
inherited
noSuchMethod(Invocation invocation)→ dynamic
Invoked when a nonexistent method or property is accessed.
inherited
removeEventListener(String type, EventListener? listener, [bool? useCapture])→ void
inherited
start()→ void
stop()→ void
A string representation of this object.
inherited
Operators
operator ==(Object other)→ bool
The equality operator.
inherited
Static Properties
Checks if this type is supported on the current platform.
no setter
Constants
audioEndEvent → const EventStreamProvider<Event>
Static factory designed to expose audioend
events to event handlers that are not necessarily instances of SpeechRecognition.
audioStartEvent → const EventStreamProvider<Event>
Static factory designed to expose audiostart
events to event handlers that are not necessarily instances of SpeechRecognition.
endEvent → const EventStreamProvider<Event>
Static factory designed to expose end
events to event handlers that are not necessarily instances of SpeechRecognition.
errorEvent → const EventStreamProvider<SpeechRecognitionError>
Static factory designed to expose error
events to event handlers that are not necessarily instances of SpeechRecognition.
noMatchEvent → const EventStreamProvider<SpeechRecognitionEvent>
Static factory designed to expose nomatch
events to event handlers that are not necessarily instances of SpeechRecognition.
resultEvent → const EventStreamProvider<SpeechRecognitionEvent>
Static factory designed to expose result
events to event handlers that are not necessarily instances of SpeechRecognition.
soundEndEvent → const EventStreamProvider<Event>
Static factory designed to expose soundend
events to event handlers that are not necessarily instances of SpeechRecognition.
soundStartEvent → const EventStreamProvider<Event>
Static factory designed to expose soundstart
events to event handlers that are not necessarily instances of SpeechRecognition.
speechEndEvent → const EventStreamProvider<Event>
Static factory designed to expose speechend
events to event handlers that are not necessarily instances of SpeechRecognition.
speechStartEvent → const EventStreamProvider<Event>
Static factory designed to expose speechstart
events to event handlers that are not necessarily instances of SpeechRecognition.
startEvent → const EventStreamProvider<Event>
Static factory designed to expose start
events to event handlers that are not necessarily instances of SpeechRecognition.