onBlur property

EventStream<int> get onBlur

This event is sent when focus leaves a text box. It is sent to all extensions that are listening to this event, and enabled by the user.

Implementation

EventStream<int> get onBlur =>
    $js.chrome.input.ime.onBlur.asStream(($c) => (int contextId) {
          return $c(contextId);
        });