UIEvent constructor

UIEvent(
  1. String type,
  2. {Window? view,
  3. int detail = 0,
  4. bool canBubble = true,
  5. bool cancelable = true}
)

Implementation

factory UIEvent(String type,
    {Window? view,
    int detail: 0,
    bool canBubble: true,
    bool cancelable: true}) {
  if (view == null) {
    view = window;
  }
  UIEvent e = document._createEvent("UIEvent") as UIEvent;
  e._initUIEvent(type, canBubble, cancelable, view, detail);
  return e;
}

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.13.0/dart-html/UIEvent/UIEvent.html