onReset property

EventStream<String> get onReset

This event is sent when chrome terminates ongoing text input session.

Implementation

EventStream<String> get onReset =>
    $js.chrome.input.ime.onReset.asStream(($c) => (String engineId) {
          return $c(engineId);
        }.toJS);