PageInfo<K> constructor

PageInfo<K>({
  1. bool hasNext = false,
  2. bool hasPrevious = false,
  3. K? startCursor,
  4. K? endCursor,
})

Implementation

PageInfo({
  this.hasNext = false,
  this.hasPrevious = false,
  this.startCursor,
  this.endCursor,
});