unswipe method

Future<void> unswipe()

Unswipe the card.

Implementation

Future<void> unswipe() async {
  _assertIsAttached();
  await _attachedSwiper!._onUnswipe();
  notifyListeners();
}