showCursor method

void showCursor()

Shows the terminal cursor.

Implementation

void showCursor() {
  _cursorHidden = false;
  _renderer.showCursor();
  _renderer.flush();
}