ResultInfo constructor

ResultInfo(
  1. int count,
  2. int page,
  3. int per_page,
  4. int total_count,
  5. int? total_pages,
)

Implementation

ResultInfo(
  this.count,
  this.page,
  this.per_page,
  this.total_count,
  this.total_pages,
);