TrayRequestMetadata constructor

TrayRequestMetadata({
  1. required int currentPage,
  2. required int limit,
  3. required int? totalPages,
  4. required bool hasNextPage,
  5. required bool hasPreviousPage,
  6. int? totalResults,
  7. Map<String, String> extra = const {},
})

Implementation

TrayRequestMetadata({
  required this.currentPage,
  required this.limit,
  required this.totalPages,
  required this.hasNextPage,
  required this.hasPreviousPage,
  this.totalResults,
  this.extra = const {},
});