OrderedCollectionPage<T> constructor

OrderedCollectionPage<T>(
  1. dynamic context,
  2. String type,
  3. String? next,
  4. String? prev,
  5. String partOf,
  6. String id,
  7. List<T> orderedItems,
)

Implementation

OrderedCollectionPage(
  this.context,
  this.type,
  this.next,
  this.prev,
  this.partOf,
  this.id,
  this.orderedItems,
);