Paging constructor Null safety

const Paging(
  1. {int? total,
  2. int? limit}
)

Links related to the response document, including paging links.

Implementation

const Paging({
  this.total,
  this.limit,
});