mouseDown method
Sends a mouse press at (x, y) without releasing.
Implementation
void mouseDown(int x, int y, {MouseButton button = MouseButton.left}) {
_ensureRunning();
_program!.send(
MouseMsg(action: MouseAction.press, button: button, x: x, y: y),
);
_syncView();
}