MouseEvent constructor

const MouseEvent({
  1. required int x,
  2. required int y,
  3. required MouseButton button,
  4. required MouseAction action,
  5. bool ctrl = false,
  6. bool alt = false,
  7. bool shift = false,
})

Implementation

const MouseEvent({
  required this.x,
  required this.y,
  required this.button,
  required this.action,
  this.ctrl = false,
  this.alt = false,
  this.shift = false,
});