MouseEvent constructor

MouseEvent(
  1. String type, {
  2. double clientX = 0.0,
  3. double clientY = 0.0,
  4. double offsetX = 0.0,
  5. double offsetY = 0.0,
  6. double detail = 0.0,
  7. EventTarget? view,
  8. double which = 0.0,
})

Implementation

MouseEvent(
  super.type, {
  this.clientX = 0.0,
  this.clientY = 0.0,
  this.offsetX = 0.0,
  this.offsetY = 0.0,
  super.detail,
  super.view,
  super.which,
}) : super(composed: false);