contentBuilder method

void contentBuilder(
  1. BuildContext context,
  2. RefreshMode refreshState,
  3. double pulledExtent,
  4. double refreshTriggerPullDistance,
  5. double refreshIndicatorExtent,
  6. AxisDirection axisDirection,
  7. bool float,
  8. Duration? completeDuration,
  9. bool enableInfiniteRefresh,
  10. bool success,
  11. bool noMore,
)

Implementation

void contentBuilder(
    BuildContext context,
    RefreshMode refreshState,
    double pulledExtent,
    double refreshTriggerPullDistance,
    double refreshIndicatorExtent,
    AxisDirection axisDirection,
    bool float,
    Duration? completeDuration,
    bool enableInfiniteRefresh,
    bool success,
    bool noMore) {
  this.context = context;
  this.refreshState = refreshState;
  this.pulledExtent = pulledExtent;
  this.refreshTriggerPullDistance = refreshTriggerPullDistance;
  this.refreshIndicatorExtent = refreshIndicatorExtent;
  this.axisDirection = axisDirection;
  this.float = float;
  this.completeDuration = completeDuration;
  this.enableInfiniteRefresh = enableInfiniteRefresh;
  this.success = success;
  this.noMore = noMore;
  _ambiguate(SchedulerBinding.instance)!
      .addPostFrameCallback((Duration timestamp) {
    notifyListeners();
  });
}