UIEvent constructor

UIEvent(
  1. String type, {
  2. double detail = 0.0,
  3. EventTarget? view,
  4. double which = 0.0,
  5. bool composed = false,
})

Implementation

UIEvent(
  super.type, {
  this.detail = 0.0,
  this.view,
  this.which = 0.0,
  super.composed,
}) : super(bubbles: true, cancelable: true);