didOverscrollBy method
Called by setPixels to report overscroll when an attempt is made to change the pixels position. Overscroll is the amount of change that was not applied to the pixels value.
Implementation
@override
void didOverscrollBy(double value) {
super.didOverscrollBy(value);
// Called because it was overscrolled.
didOverscroll();
}