subscribeToWindowEvent method

void subscribeToWindowEvent(
  1. String event,
  2. EventListener callback, {
  3. bool? useCapture,
  4. EventTarget? windowObject,
})
inherited

Adds an event listener to the window object and removes the event listener upon disposal.

If using this method, you cannot manually use the removeEventListener method on the window singleton to remove the listener. At this point the only way to remove the listener is to use the dispose method.

Implementation

void subscribeToWindowEvent(String event, EventListener callback,
    {bool? useCapture, EventTarget? windowObject}) {
  if (windowObject == null) {
    windowObject = window;
  }
  _subscribeToEvent(windowObject, event, callback, useCapture);
}