UIEvent constructor
UIEvent(
- String type, {
- double detail = 0.0,
- EventTarget? view,
- double which = 0.0,
- bool composed = false,
Implementation
UIEvent(
super.type, {
this.detail = 0.0,
this.view,
this.which = 0.0,
super.composed,
}) : super(bubbles: true, cancelable: true);