next method

void next()

Implementation

void next() {
  if (hasNext) {
    _currentStep++;
    notifyListeners();
  } else {
    finish();
  }
}