backgroundCursorColor property

Color? 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.

Implementation

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

Implementation

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