indicatorColor property

Color get indicatorColor

The color of the active tab indicator line.

Implementation

Color get indicatorColor => _indicatorColor;
set indicatorColor (Color v)

Sets the indicator color and invalidates the paint cache.

Implementation

set indicatorColor(Color v) {
  _indicatorColor = v;
  _invalidateCache();
}