nextSearchHistoryPage method
Implementation
void nextSearchHistoryPage() {
if (currentSearchHistoryPage.value == totalSearchHistoryPages.value) {
return;
}
currentSearchHistoryPage.value += 1;
getHistoryByUser();
}
void nextSearchHistoryPage() {
if (currentSearchHistoryPage.value == totalSearchHistoryPages.value) {
return;
}
currentSearchHistoryPage.value += 1;
getHistoryByUser();
}