move_cursor_back method
Moves the Cursor Back the specified amount of times
.
Implementation
void move_cursor_back([
final int times = 1,
]) {
write_ansi(
'${times}D',
);
}
Moves the Cursor Back the specified amount of times
.
void move_cursor_back([
final int times = 1,
]) {
write_ansi(
'${times}D',
);
}