Event constructor

Event(
  1. String type, {
  2. bool bubbles = false,
  3. bool cancelable = false,
  4. bool composed = false,
})

Implementation

Event(
  this.type, {
  this.bubbles = false,
  this.cancelable = false,
  this.composed = false,
});