length property

int? 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;
void length=(int? v)

Implementation

set length(int? v) {
  _wrapped.length = v;
}