previousPage method
void
previousPage()
Go to the previous page.
Implementation
void previousPage() {
if (_currentPage > 0) {
currentPage = _currentPage - 1;
}
}
Go to the previous page.
void previousPage() {
if (_currentPage > 0) {
currentPage = _currentPage - 1;
}
}