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