PagingController<PageKeyType, ItemType> constructor

PagingController<PageKeyType, ItemType>({
  1. required PageKeyType firstPageKey,
  2. int? invisibleItemsThreshold,
})

Implementation

PagingController({
  required this.firstPageKey,
  this.invisibleItemsThreshold,
}) : super(
        PagingState<PageKeyType, ItemType>(nextPageKey: firstPageKey),
      );