Form constructor

const Form({
  1. Key? key,
  2. required Widget child,
  3. VoidCallback? onSubmitted,
  4. bool autovalidate = false,
})

Implementation

const Form({
  super.key,
  required this.child,
  this.onSubmitted,
  this.autovalidate = false,
});