endScroll method

void endScroll(
  1. Velocity? velocity
)

Implementation

void endScroll(Velocity? velocity) {
  scrollCapture?.velocity =
      velocity ?? Velocity(pixelsPerSecond: Offset(0, 0));
  scrollCapture?.calculateSwipe();

  Tealeaf.isSwiping = false;
  checkForScroll();
}