on method

Window on(
  1. EventType type,
  2. WindowListener callback
)

on register callback to listener

Implementation

Window on(EventType type, WindowListener callback) {
  _eventManager.on(this, type, callback);
  return this;
}