activeColor property

Color get activeColor

The color of the filled indicator when selected.

Implementation

Color get activeColor => _activeColor;
set activeColor (Color v)

Sets the active color and invalidates the paint cache.

Implementation

set activeColor(Color v) {
  _activeColor = v;
  _invalidateCache();
}