swipeRight method

Future<void> swipeRight()

Swipe the card to the right side.

Implementation

Future<void> swipeRight() async {
  _assertIsAttached();
  // ignore: unawaited_futures
  _attachedSwiper!._onSwipe(AxisDirection.right);
  notifyListeners();
}