UIEvent constructor

UIEvent(
  1. String type, {
  2. int? detail,
  3. InputDeviceCapabilities? sourceCapabilities,
  4. Object? view,
  5. bool canBubble = true,
  6. bool cancelable = true,
})

Implementation

UIEvent(
  super.type, {
  this.detail,
  this.sourceCapabilities,
  this.view,
  super.canBubble,
  bool super.cancelable,
}) : super.internal();