Color selectionColor

The color to use when painting the selection.

Source

Color get selectionColor => _selectionColor;
void selectionColor=(Color value)

Source

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