PageInfo<T> constructor

const PageInfo<T>({
  1. required List<T> items,
  2. dynamic nextPageKey,
  3. bool? isLastPage,
  4. int? totalItems,
})

Implementation

const PageInfo({
  required this.items,
  this.nextPageKey,
  this.isLastPage,
  this.totalItems,
});