previousStep method

void previousStep()

Implementation

void previousStep() {
  if (_currentStep > 0) {
    _currentStep--;
    _notifyStepChanged();
    notifyListeners();
  }
}