backgroundCursorColor property Null safety

Color? backgroundCursorColor

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

The default is light grey.

Implementation

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

Implementation

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