nextMatch method
void
nextMatch()
Implementation
void nextMatch() {
if (_totalMatches == 0) return;
_currentMatchIndex = (_currentMatchIndex + 1) % _totalMatches;
notifyListeners();
}
void nextMatch() {
if (_totalMatches == 0) return;
_currentMatchIndex = (_currentMatchIndex + 1) % _totalMatches;
notifyListeners();
}