previous method

void previous()

Implementation

void previous() {
  if (hasPrevious) {
    _currentStep--;
    notifyListeners();
  }
}