Moves the cursor to the specified 1-based x and y coordinates.
x
y
void goto({required int x, required int y}) { assert(x > 0 && y > 0); backend.write('\x1b[$y;${x}H'); }