contentBuilder method
void
contentBuilder()
Implementation
void contentBuilder(
BuildContext context,
LoadMode loadState,
double pulledExtent,
double loadTriggerPullDistance,
double loadIndicatorExtent,
AxisDirection axisDirection,
bool float,
Duration? completeDuration,
bool enableInfiniteLoad,
bool success,
bool noMore) {
this.context = context;
this.loadState = loadState;
this.pulledExtent = pulledExtent;
this.loadTriggerPullDistance = loadTriggerPullDistance;
this.loadIndicatorExtent = loadIndicatorExtent;
this.axisDirection = axisDirection;
this.float = float;
this.completeDuration = completeDuration;
this.enableInfiniteLoad = enableInfiniteLoad;
this.success = success;
this.noMore = noMore;
_ambiguate(SchedulerBinding.instance)!
.addPostFrameCallback((Duration timestamp) {
notifyListeners();
});
}