PagingManager constructor
Implementation
PagingManager({
/// The data we want to paginate
required this.data,
/// Default page size for each page
this.pageSize = 10,
/// Can be used as an initial page
this.currentPage = 0
});
PagingManager({
/// The data we want to paginate
required this.data,
/// Default page size for each page
this.pageSize = 10,
/// Can be used as an initial page
this.currentPage = 0
});