reset_cursor_position method
Moves the cursor to the top left corner of the screen.
Implementation
@override
void reset_cursor_position() {
stdout.write(
control_sequence_identifier + "1;1H",
);
}
Moves the cursor to the top left corner of the screen.
@override
void reset_cursor_position() {
stdout.write(
control_sequence_identifier + "1;1H",
);
}