MouseEventInit constructor

MouseEventInit({
  1. bool bubbles = false,
  2. bool cancelable = false,
  3. double clientX = 0.0,
  4. double clientY = 0.0,
  5. double offsetX = 0.0,
  6. double offsetY = 0.0,
})

Implementation

MouseEventInit({
  bool bubbles = false,
  bool cancelable = false,
  this.clientX = 0.0,
  this.clientY = 0.0,
  this.offsetX = 0.0,
  this.offsetY = 0.0,
})
    : super(bubbles: bubbles, cancelable: cancelable);