isAtBottom method
Implementation
bool isAtBottom({double threshold = 20}) {
if (!hasClients) return true;
if (reverse) {
return position.pixels <= threshold;
} else {
return (position.maxScrollExtent - position.pixels) <= threshold;
}
}