FormModifier constructor
const
FormModifier({
- Key? key,
- Widget? child,
- Key? modifierKey,
- WillPopCallback? onWillPop,
- VoidCallback? onChanged,
- AutovalidateMode? autovalidateMode,
Creates a container for form fields.
The child
argument must not be null.
Implementation
const FormModifier({
super.key,
super.child,
super.modifierKey,
this.onWillPop,
this.onChanged,
this.autovalidateMode,
});