incrementProgressCounter method

void incrementProgressCounter()

Increments by 1 the value of progressCounter and calls notifyListeners

Implementation

void incrementProgressCounter(){
  progressCounter++;
  notifyListeners();
}