PaginatorState<T> constructor

PaginatorState<T>(
  1. PageLoadFuture<T> _pageLoadFuture,
  2. PageItemsGetter<T?>? _pageItemsGetter,
  3. ListItemBuilder _listItemBuilder,
  4. LoadingWidgetBuilder _loadingWidgetBuilder,
  5. ErrorWidgetBuilder<T?>? _errorWidgetBuilder,
  6. EmptyListWidgetBuilder<T?>? _emptyListWidgetBuilder,
  7. TotalItemsGetter<T> _totalItemsGetter,
  8. PageErrorChecker<T> _pageErrorChecker,
  9. SliverGridDelegate? _gridDelegate,
  10. Key? _scrollViewKey,
  11. Axis _scrollDirection,
  12. bool _reverse,
  13. ScrollPhysics? _scrollPhysics,
  14. EdgeInsets? _padding,
  15. bool _shrinkWrap,
  16. ScrollController? _scrollController,
  17. bool? _primary,
  18. int? _semanticChildCount,
  19. double? _cacheExtent,
  20. bool _addAutomaticKeepAlives,
  21. bool _addRepaintBoundaries,
  22. bool _addSemanticIndexes,
  23. double? _itemExtent,
  24. ValueChanged<int>? _onPageChanged,
  25. bool _pageSnapping,
  26. PageController? _pageController,
  27. ListType _listType,
)

Implementation

PaginatorState(
  this._pageLoadFuture,
  this._pageItemsGetter,
  this._listItemBuilder,
  this._loadingWidgetBuilder,
  this._errorWidgetBuilder,
  this._emptyListWidgetBuilder,
  this._totalItemsGetter,
  this._pageErrorChecker,
  this._gridDelegate,
  this._scrollViewKey,
  this._scrollDirection,
  this._reverse,
  this._scrollPhysics,
  this._padding,
  this._shrinkWrap,
  this._scrollController,
  this._primary,
  this._semanticChildCount,
  this._cacheExtent,
  this._addAutomaticKeepAlives,
  this._addRepaintBoundaries,
  this._addSemanticIndexes,
  this._itemExtent,
  this._onPageChanged,
  this._pageSnapping,
  this._pageController,
  this._listType,
);