previousPage method
Implementation
void previousPage() {
if (currentPage.value == 1) {
return;
}
currentPage.value -= 1;
loadBookings();
}
void previousPage() {
if (currentPage.value == 1) {
return;
}
currentPage.value -= 1;
loadBookings();
}