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