PageDocumentLinks constructor Null safety

const PageDocumentLinks(
  1. {String? first,
  2. String? next,
  3. String? self}
)

Links related to the response document, including paging links.

Implementation

const PageDocumentLinks({
  this.first,
  this.next,
  this.self,
});