moveState method
Implementation
@override
void moveState() {
_currentIndex = (_currentIndex + 1) % stateList.length;
value = stateList[_currentIndex];
}
@override
void moveState() {
_currentIndex = (_currentIndex + 1) % stateList.length;
value = stateList[_currentIndex];
}