MouseEvent constructor
const
MouseEvent({
- required int x,
- required int y,
- required MouseButton button,
- required MouseAction action,
- bool ctrl = false,
- bool alt = false,
- 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,
});