indicatorWidth property
int?
get
indicatorWidth
The fixed width, or null to fill available space.
Implementation
int? get indicatorWidth => _indicatorWidth;
set
indicatorWidth
(int? v)
Sets the indicator width.
Implementation
set indicatorWidth(int? v) {
if (_indicatorWidth == v) return;
_indicatorWidth = v;
markNeedsLayout();
}