backgroundColor property

Color? get backgroundColor

The background color behind the spinner.

Implementation

Color? get backgroundColor => _backgroundColor;
set backgroundColor (Color? value)

Sets the background color and invalidates the cached style.

Implementation

set backgroundColor(Color? value) {
  if (_backgroundColor == value) return;
  _backgroundColor = value;
  _cachedStyle = null;
}