showCursor method
Shows the terminal cursor.
Implementation
@override
void showCursor() {
if (_cursorVisible || !supportsAnsi) return;
write(Ansi.cursorShow);
_cursorVisible = true;
}
Shows the terminal cursor.
@override
void showCursor() {
if (_cursorVisible || !supportsAnsi) return;
write(Ansi.cursorShow);
_cursorVisible = true;
}