Data constructor

Data({
  1. List<ListElement>? list,
  2. int? totalElements,
  3. int? totalRecords,
  4. int? totalPages,
  5. int? offset,
  6. int? limit,
  7. int? pageNumber,
  8. bool? last,
  9. bool? next,
})

Implementation

Data({
  this.list,
  this.totalElements,
  this.totalRecords,
  this.totalPages,
  this.offset,
  this.limit,
  this.pageNumber,
  this.last,
  this.next,
});