nextParams property
returns the next page params
Implementation
Pagination get nextParams {
assert(_pagination != null, 'Pagination is not initialized');
return _pagination!.map(
page: (page) => page.copyWith(
currentPage: page.currentPage + 1,
),
cursor: (cursor) => cursor,
);
}