PageResp constructor

PageResp({
  1. bool? first,
  2. bool? last,
  3. int? page,
  4. int? size,
  5. Sort? sort,
  6. int? totalElements,
  7. int? totalPages,
})

Implementation

PageResp(
    {this.first,
    this.last,
    this.page,
    this.size,
    this.sort,
    this.totalElements,
    this.totalPages});