moveCursorTo method
override
Moves the terminal cursor to the given position.
Implementation
@override
@nonVirtual
void moveCursorTo(int x, int y) {
_writeSequences([MoveCursorTo(y + 1, x + 1).toSequence()]);
}
Moves the terminal cursor to the given position.
@override
@nonVirtual
void moveCursorTo(int x, int y) {
_writeSequences([MoveCursorTo(y + 1, x + 1).toSequence()]);
}