handleStepZero method

Future<void> handleStepZero(
  1. ValueNotifier<bool> isFree
)

Implementation

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