onBoundsChanged property
EventStream<Window>
get
onBoundsChanged
Fired when a window has been resized; this event is only dispatched when the new bounds are committed, and not for in-progress changes.
Implementation
EventStream<Window> get onBoundsChanged =>
$js.chrome.windows.onBoundsChanged.asStream(($c) => ($js.Window window) {
return $c(Window.fromJS(window));
}.toJS);