buildOverscrollIndicator method
- BuildContext context,
- Widget child,
- ScrollableDetails details
override
    Applies a GlowingOverscrollIndicator to the child widget on TargetPlatform.android and TargetPlatform.fuchsia.
Implementation
@override
Widget buildOverscrollIndicator(BuildContext context, Widget child, ScrollableDetails details) {
  // No overscroll indicator.
  // When modifying this function, consider modifying the implementation in
  // the base class as well.
  return child;
}