showCursor method

  1. @override
void showCursor()
override

Shows the terminal cursor.

Implementation

@override
void showCursor() {
  if (_cursorVisible || !supportsAnsi) return;
  write(Ansi.cursorShow);
  _cursorVisible = true;
}