PagingState<PageKeyType, ItemType> constructor

const PagingState<PageKeyType, ItemType>({
  1. PageKeyType? nextPageKey,
  2. List<ItemType>? itemList,
  3. dynamic error,
})

Implementation

const PagingState({
  this.nextPageKey,
  this.itemList,
  this.error,
});