cycleMatch method

void cycleMatch()

Implementation

void cycleMatch() {
  if (currentItem!.decision != Decision.undecided) {
    currentItem!.resetMatch();
    _currentItemIndex = _nextItemIndex;
    _nextItemIndex = _nextItemIndex! + 1;
    notifyListeners();
  }
}