onSubmit method
Handles the form submission for the current step.
Override this method in each step to define what should happen when the step is submitted. Currently, it does nothing and returns a completed Future.
Implementation
@override
Future<Success> onSubmit() {
// Implement specific submission logic for this step if needed.
return Future.value();
}