InfiniteScrollPage constructor
InfiniteScrollPage({
- required String dataUrl,
- dynamic child(
- InfiniteScrollPODO data
- int perPage = 10,
- int debounceMaxPeriod = 5000,
- bool loadMoreEnabled = true,
Implementation
InfiniteScrollPage({
required this.dataUrl,
this.child,
this.perPage = 10,
this.debounceMaxPeriod = 5000,
this.loadMoreEnabled = true,
});