bool showCursor

Whether to paint the cursor.

Source

bool get showCursor => _showCursor;
void showCursor=(bool value)

Source

set showCursor(bool value) {
  if (_showCursor == value)
    return;
  _showCursor = value;
  markNeedsPaint();
}