nextStep method

void nextStep()

Implementation

void nextStep() {
  if (_currentStep < maxSteps) {
    _currentStep++;
    _notifyStepChanged();
    notifyListeners();
  }
}