prevPage method
Navigates to the previous page.
Implementation
PaginatorModel prevPage() {
if (page > 0) {
return copyWith(page: page - 1);
}
return this;
}
Navigates to the previous page.
PaginatorModel prevPage() {
if (page > 0) {
return copyWith(page: page - 1);
}
return this;
}