AbstractFormBuilder<B extends AbstractFormBloc<S> , S extends AbstractFormBasicState> constructor
AbstractFormBuilder<B extends AbstractFormBloc<S> , S extends AbstractFormBasicState> (
- {Key? key,
- void onInit(
- BuildContext context
- bool skipInitialOnInit = false,
- bool reinitOnSuccess = true,
- Widget errorBuilder(
- BuildContext context,
- void onInit(
- S state
- bool isLoading(
- BuildContext context,
- S state
- bool shouldAutovalidate(
- BuildContext context,
- S state
- bool isError(
- BuildContext context,
- S state
- bool hasData(
- BuildContext context,
- S state
- Widget? child,
- Widget extendedBuilder(
- BuildContext context,
- S state,
- B bloc,
- void submit(
- Widget builder(
- BuildContext context,
- S state
- void listener(
- BuildContext context,
- S state
- void onSuccess(
- BuildContext context,
- S state
- void onError(
- BuildContext context,
- S state
- void onValidationError(
- BuildContext context,
- S state
Implementation
AbstractFormBuilder({
Key? key,
this.onInit,
this.skipInitialOnInit = false,
this.reinitOnSuccess = true,
this.errorBuilder,
this.isLoading,
this.shouldAutovalidate,
this.isError,
this.hasData,
this.child,
this.extendedBuilder,
this.builder,
this.listener,
this.onSuccess,
this.onError,
this.onValidationError,
}) : super(key: key);