onResume property
EventStream<void>
get
onResume
Optional: if an engine supports the pause event, it should also support the resume event, to continue speaking the current utterance, if any. Note that a stop event should also clear the paused state.
Implementation
EventStream<void> get onResume =>
$js.chrome.ttsEngine.onResume.asStream(($c) => () {
return $c(null);
}.toJS);