PaginationModel<T> constructor

PaginationModel<T>({
  1. int totalCount = 0,
  2. int pageIndex = 0,
  3. int pageSize = 0,
  4. List<T> data = const [],
})

Implementation

PaginationModel({
  this.totalCount = 0,
  this.pageIndex = 0,
  this.pageSize = 0,
  this.data = const [],
});