backgroundCursorColor property

Color? get backgroundCursorColor

The color to use when painting the cursor aligned to the text while rendering the floating cursor.

Typically this would be set to CupertinoColors.inactiveGray.

If this is null, the background cursor is not painted.

See also:

Implementation

Color? get backgroundCursorColor => _caretPainter.backgroundCursorColor;
set backgroundCursorColor (Color? value)

Implementation

set backgroundCursorColor(Color? value) {
  _caretPainter.backgroundCursorColor = value;
}