color property

Color get color

The color of the divider line.

Implementation

Color get color => _color;
set color (Color value)

Sets the color and invalidates the paint cache.

Implementation

set color(Color value) {
  if (_color == value) return;
  _color = value;
  _cachedStyle = null;
}