distancePulled property
Implementation
@override
double get distancePulled => _distancePulled;
Implementation
@protected
set distancePulled(double value) {
if (_distancePulled == value) return;
_distancePulled = math.max(0.0, value);
_verticalOffset = calculateVerticalOffset();
if (!isAnimating && !isRefreshing) {
delegate.snapTo(verticalOffset / threshold);
}
notifyListeners();
}