refreshIndicatorLayoutExtent property
double
get
refreshIndicatorLayoutExtent
Implementation
double get refreshIndicatorLayoutExtent => _refreshIndicatorExtent;
set
refreshIndicatorLayoutExtent
(double value)
Implementation
set refreshIndicatorLayoutExtent(double value) {
assert(value >= 0.0);
if (value == _refreshIndicatorExtent) return;
_refreshIndicatorExtent = value;
markNeedsLayout();
}