Page<T> constructor

const Page<T>({
  1. required List<T> data,
  2. required bool hasNextPage,
  3. String? nextCursor,
})

Implementation

const Page({
  required this.data,
  required this.hasNextPage,
  this.nextCursor,
});