onInputStarted property
EventStream<void>
get
onInputStarted
User has started a keyword input session by typing the extension's keyword. This is guaranteed to be sent exactly once per input session, and before any onInputChanged events.
Implementation
EventStream<void> get onInputStarted =>
$js.chrome.omnibox.onInputStarted.asStream(($c) => () {
return $c(null);
});