Moves the cursor to the given x (column) and y (row) position.
x
y
@override void setCursorPosition(int x, int y) { FfiWrite.instance.writeString('\x1b[${y + 1};${x + 1}H'); }