reset_cursor_position method

  1. @override
void reset_cursor_position()
override

Moves the cursor to the top left corner of the screen.

Implementation

@override
void reset_cursor_position() {
  stdout.write(
    control_sequence_identifier + "1;1H",
  );
}