nextStep method
Implementation
void nextStep() {
if (state.currentStep < state.totalSteps - 1) {
emit(state.copyWith(currentStep: state.currentStep + 1));
// Trigger partial save here if implemented
}
}
void nextStep() {
if (state.currentStep < state.totalSteps - 1) {
emit(state.copyWith(currentStep: state.currentStep + 1));
// Trigger partial save here if implemented
}
}