previousSearchHistoryPage method
Implementation
void previousSearchHistoryPage() {
if (currentSearchHistoryPage.value == 1) {
return;
}
currentSearchHistoryPage.value -= 1;
getHistoryByUser();
}
void previousSearchHistoryPage() {
if (currentSearchHistoryPage.value == 1) {
return;
}
currentSearchHistoryPage.value -= 1;
getHistoryByUser();
}