swipeRight method

void swipeRight()

for action performed by clicking tap for right swipe

Implementation

void swipeRight() {
  if (_listener != null) {
    _listener!(SwipeDirection.right);
  }
}