nextParams property
returns the next page params
Implementation
PageParams get nextParams => PageParams(
currentPage: _currentPage + 1,
perPage: _perPage,
lastPage: _lastPage,
total: _total,
);
returns the next page params
PageParams get nextParams => PageParams(
currentPage: _currentPage + 1,
perPage: _perPage,
lastPage: _lastPage,
total: _total,
);