nextState method
次のステップのStateを作成する
Implementation
void nextState() {
state = state.copyWith(
currentIndex: state.currentIndex + 1,
);
}
次のステップのStateを作成する
void nextState() {
state = state.copyWith(
currentIndex: state.currentIndex + 1,
);
}