move_cursor_back method

void move_cursor_back([
  1. int times = 1
])

Moves the Cursor Back the specified amount of times.

Implementation

void move_cursor_back([
  final int times = 1,
]) {
  write_ansi(
    '${times}D',
  );
}