color property
set
color
(Color value)
Sets the spinner color and invalidates the cached style.
Implementation
set color(Color value) {
if (_color == value) return;
_color = value;
_cachedStyle = null;
}