The color that should be used in the active state (i.e., when value is true).
For example, a checkbox should use this color when checked.
Source
Color get activeColor => _activeColor;
Source
set activeColor(Color value) { assert(value != null); if (value == _activeColor) return; _activeColor = value; markNeedsPaint(); }