onReachBottom method
Implementation
void onReachBottom(VoidCallback callback, {double threshold = 200}) {
addListener(() {
if (!hasClients) return;
if (remainingScroll <= threshold) callback();
});
}
void onReachBottom(VoidCallback callback, {double threshold = 200}) {
addListener(() {
if (!hasClients) return;
if (remainingScroll <= threshold) callback();
});
}