highlightColor property

Color? highlightColor

Implementation

Color? get highlightColor => _highlightColor;
void highlightColor=(Color? newValue)

Implementation

set highlightColor(Color? newValue) {
  if (newValue == _highlightColor) return;
  _highlightColor = newValue;
  notifyListeners();
}