refreshIndicatorLayoutExtent property

double refreshIndicatorLayoutExtent

Implementation

double get refreshIndicatorLayoutExtent => _refreshIndicatorExtent;
void refreshIndicatorLayoutExtent=(double value)

Implementation

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