goToNextStep method
Implementation
Future<void> goToNextStep(Map<String, dynamic> formData) async {
if (hasNextStep()) {
currentStep.value = currentStep.value + 1;
currentStepData.value = stepperFormData.value.steps![currentStep.value];
}
}