previous method

void previous()

Implementation

void previous() {
  if (_currentStepIndex > 0) {
    _currentStepIndex--;
    _showStep();
  }
}