swipeUp method

Future<void> swipeUp()

Swipe the card to the top.

Implementation

Future<void> swipeUp() async {
  _assertIsAttached();
  await _attachedSwiper!._onSwipe(AxisDirection.up);
  notifyListeners();
}