movePrevState method
void
movePrevState()
Implementation
void movePrevState() {
if (_currentState!.index > 0) {
_currentState = _states[_currentState!.index - 1];
notifyListeners();
}
}
void movePrevState() {
if (_currentState!.index > 0) {
_currentState = _states[_currentState!.index - 1];
notifyListeners();
}
}