updateMatchCount method
Implementation
void updateMatchCount(int count) {
if (_totalMatches == count) return;
_totalMatches = count;
notifyListeners();
}
void updateMatchCount(int count) {
if (_totalMatches == count) return;
_totalMatches = count;
notifyListeners();
}