previousMatch method

void previousMatch()

Implementation

void previousMatch() {
  if (_totalMatches == 0) return;
  _currentMatchIndex =
      (_currentMatchIndex - 1 + _totalMatches) % _totalMatches;
  notifyListeners();
}