onFormSubmitted method
Future<bool>
onFormSubmitted(
- Emitter<
BlocxFormState< emit,F, E> > - BlocxUseCaseResult<
Object?> result
inherited
Runs after successful form submission.
Return false to prevent BlocxFormStateFormSubmitted from being emitted.
Implementation
Future<bool> onFormSubmitted(
Emitter<BlocxFormState<F, E>> emit,
BlocxUseCaseResult<Object?> result,
) async {
return true;
}