previousStep method

void previousStep()

Implementation

void previousStep() {
  if (_currentIndex == 0) {
    return;
  }

  _currentIndex -= 1;
  notifyListeners();
}