nextPage method
Implementation
bool nextPage() {
if (_extract != null &&
_extract!.length > ((_currentPage + 1) * 5) &&
_currentPage >= 0) {
_currentPage++;
return true;
} else {
return false;
}
}
bool nextPage() {
if (_extract != null &&
_extract!.length > ((_currentPage + 1) * 5) &&
_currentPage >= 0) {
_currentPage++;
return true;
} else {
return false;
}
}