length property
int?
get
length
The length of the next part of the utterance. For example, in a word
event, this is the length of the word which will be spoken next. It will
be set to -1 if not set by the speech engine.
Implementation
int? get length => _wrapped.length;
set
length
(int? v)
Implementation
set length(int? v) {
_wrapped.length = v;
}