APagination constructor

APagination({
  1. int page = 0,
  2. int total = 100,
  3. int size = 50,
  4. String? search,
  5. String? id,
})

Implementation

APagination({
  this.page = 0,
  this.total = 100,
  this.size = 50,
  this.search,
  this.id,
}) {
  reset();
}