showCursor method

void showCursor()

Shows the terminal cursor using ANSI escape codes.

Implementation

void showCursor() {
  stdout.write('\x1B[?25h');
}