nextStep method

void nextStep()

Implementation

void nextStep() {
  if (_currentIndex >= _steps.length - 1) {
    finish();
    return;
  }

  _currentIndex += 1;
  notifyListeners();
}