Meta constructor

Meta({
  1. required int currentPage,
  2. int? from,
  3. required int lastPage,
  4. required List<Link> links,
  5. required String path,
  6. required int perPage,
  7. int? to,
  8. required int total,
})

Implementation

Meta({
  required this.currentPage,
  this.from,
  required this.lastPage,
  required this.links,
  required this.path,
  required this.perPage,
  this.to,
  required this.total,
});