selectionColor property

  1. @override
Color? selectionColor
override

The color to use when painting the selection.

Implementation

@override
Color? get selectionColor => _selectionColor;
  1. @override
void selectionColor=(Color? value)
override

Implementation

@override
set selectionColor(Color? value) {
  if (_selectionColor == value) {
    return;
  }
  _selectionColor = value;
  markNeedsPaint();
}