color property

Color get color

The color of the spinner character.

Implementation

Color get color => _color;
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;
}