nextStep method

void nextStep()

Implementation

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