onSubmitting property

FormBlocListenerCallback<FormBlocSubmitting<SuccessResponse, ErrorResponse>, SuccessResponse, ErrorResponse>? onSubmitting
final

It is the state when the FormBloc is submitting. It is called automatically when FormBloc.submit is called successfully, and usually is used to update the submission progress.

Implementation

final FormBlocListenerCallback<
    form_bloc.FormBlocSubmitting<SuccessResponse, ErrorResponse>,
    SuccessResponse,
    ErrorResponse>? onSubmitting;