updateMatchCount method

void updateMatchCount(
  1. int count
)

Implementation

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