cursorColor property

Color cursorColor

The color to use when painting the cursor.

Implementation

Color get cursorColor => _cursorColor;
void cursorColor= (Color value)

Implementation

set cursorColor(Color value) {
  if (_cursorColor == value)
    return;
  _cursorColor = value;
  markNeedsPaint();
}