EventInit constructor

EventInit({
  1. bool bubbles = false,
  2. bool cancelable = false,
})

Implementation

EventInit({
  this.bubbles = false,
  this.cancelable = false,
});