enqueue property
bool?
get
enqueue
If true, enqueues this utterance if TTS is already in progress. If false (the default), interrupts any current speech and flushes the speech queue before speaking this new utterance.
Implementation
bool? get enqueue => _wrapped.enqueue;
set
enqueue
(bool? v)
Implementation
set enqueue(bool? v) {
_wrapped.enqueue = v;
}