DOMMouseEvent<T> constructor

DOMMouseEvent<T>(
  1. DOMTreeMap<T> treeMap,
  2. Object? event,
  3. Object? eventTarget,
  4. DOMNode? target,
  5. Point<num> client,
  6. Point<num> offset,
  7. Point<num> page,
  8. Point<num> screen,
  9. int button,
  10. int? buttons,
  11. bool altKey,
  12. bool ctrlKey,
  13. bool shiftKey,
  14. bool metaKey,
)

Implementation

DOMMouseEvent(
    DOMTreeMap<T> treeMap,
    Object? event,
    Object? eventTarget,
    DOMNode? target,
    this.client,
    this.offset,
    this.page,
    this.screen,
    this.button,
    this.buttons,
    this.altKey,
    this.ctrlKey,
    this.shiftKey,
    this.metaKey)
    : super(treeMap, event, eventTarget, target);