PagingState<PageKeyType, T extends PagingItem> constructor

const PagingState<PageKeyType, T extends PagingItem>({
  1. PageKeyType? nextPageKey,
  2. List<T>? itemList,
  3. dynamic error,
  4. bool? isRefreshing,
  5. bool? needRequestData,
})

Implementation

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