onReachBottom method

void onReachBottom(
  1. VoidCallback callback, {
  2. double threshold = 200,
})

Implementation

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