AFWidgetState<T extends TemplateForm> constructor
AFWidgetState<T extends TemplateForm> (
- T model, {
- ValueChanged<
String> ? handleErrorOnSubmit, - required bool enableFinalAction,
- bool? enableSubmitFormWrapper,
Implementation
AFWidgetState(
T model, {
ValueChanged<String>? handleErrorOnSubmit,
required bool enableFinalAction,
bool? enableSubmitFormWrapper,
}) : super(
model: model,
handleErrorOnSubmit: handleErrorOnSubmit,
enableFinalAction: enableFinalAction,
enableSubmitFormWrapper: enableSubmitFormWrapper,
);