TLoadResult<T> constructor

const TLoadResult<T>(
  1. List<T> items,
  2. int totalItems, {
  3. String? nextCursor,
  4. bool? hasNextPage,
})

Creates a load result.

Implementation

const TLoadResult(
  this.items,
  this.totalItems, {
  this.nextCursor,
  this.hasNextPage,
});