PageInfo constructor

const PageInfo({
  1. required bool hasNextPage,
  2. required bool hasPreviousPage,
  3. String? startCursor,
  4. String? endCursor,
})

Implementation

const PageInfo({
  required this.hasNextPage,
  required this.hasPreviousPage,
  this.startCursor,
  this.endCursor,
});