goToStep method
Implementation
void goToStep(DataleonFlowStep step) {
final index = _steps.indexOf(step);
if (index == -1) {
return;
}
_currentIndex = index;
notifyListeners();
}
void goToStep(DataleonFlowStep step) {
final index = _steps.indexOf(step);
if (index == -1) {
return;
}
_currentIndex = index;
notifyListeners();
}