charIndex property

int? get charIndex

The index of the current character in the utterance. For word events, the event fires at the end of one word and before the beginning of the next. The charIndex represents a point in the text at the beginning of the next word to be spoken.

Implementation

int? get charIndex => _wrapped.charIndex;
set charIndex (int? v)

Implementation

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