handleStepZero method
Implementation
Future<void> handleStepZero(ValueNotifier<bool> isFree) async {
bool? isValid = stepZeroFormKey.currentState?.validate();
if (isValid == true) {
currentStep.value = 1;
}
}
Future<void> handleStepZero(ValueNotifier<bool> isFree) async {
bool? isValid = stepZeroFormKey.currentState?.validate();
if (isValid == true) {
currentStep.value = 1;
}
}