onTtsText property

Stream<String> get onTtsText

TTS (text-to-speech) strings emitted by the native speed-alert engine.

Implementation

Stream<String> get onTtsText {
  _ttsStream ??= _ttsCh
      .receiveBroadcastStream()
      .map((e) => e as String)
      .asBroadcastStream();
  return _ttsStream!;
}