activeColor property

Color get activeColor

The color of the active (filled) track portion.

Implementation

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

Sets the active track color.

Implementation

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