charIndex property

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

Implementation

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