Paginate constructor

Paginate({
  1. int? totalRecords,
  2. int? totalPages,
  3. int? startOffset,
  4. int? endOffset,
  5. int? currentPage,
})

Implementation

Paginate(
    {this.totalRecords,
    this.totalPages,
    this.startOffset,
    this.endOffset,
    this.currentPage});