showCursor property
Whether to paint the cursor.
Implementation
ValueNotifier<bool> get showCursor => _showCursor;
Implementation
set showCursor(ValueNotifier<bool> value) {
assert(value != null);
if (_showCursor == value)
return;
if (attached)
_showCursor.removeListener(markNeedsPaint);
_showCursor = value;
if (attached)
_showCursor.addListener(markNeedsPaint);
markNeedsPaint();
}