backgroundColor property

Color get backgroundColor

The background track color.

Implementation

Color get backgroundColor => _backgroundColor;
set backgroundColor (Color v)

Sets the background color.

Implementation

set backgroundColor(Color v) {
  _backgroundColor = v;
  _invalidateCache();
}