Event constructor

Event(
  1. String type, [
  2. EventInit? init
])

Implementation

Event(this.type, [EventInit? init]) {
  init ??= EventInit();

  bubbles = init.bubbles;
  cancelable = init.cancelable;
}