canScrollRight method

bool canScrollRight({
  1. double threshold = 100,
})

Implementation

bool canScrollRight({double threshold = 100}) {
  final remaining = maxScrollExtent - offset;
  return remaining > 0 && remaining >= threshold;
}