swipeLeft method

Future<void> swipeLeft()

Swipe the card to the left side.

Implementation

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