scrollToOverscroll method

void scrollToOverscroll()

Implementation

void scrollToOverscroll() {
  final focused = findFocusedObject(context.findRenderObject());
  if (focused == null || _scrollController == null) return;
  scrollToObject(focused, _scrollController!, widget.duration, widget.curve,
      widget.overscroll);
}