activeColor property

Color get activeColor

The color of the filled background when checked.

Implementation

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

Sets the active color and invalidates the paint cache.

Implementation

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