FormModifier constructor

const FormModifier({
  1. Key? key,
  2. Widget? child,
  3. Key? modifierKey,
  4. WillPopCallback? onWillPop,
  5. VoidCallback? onChanged,
  6. 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,
});