Form constructor

const Form({
  1. Key? key,
  2. required Widget child,
  3. FormSubmitCallback? onSubmit,
  4. FormController? controller,
})

Implementation

const Form({super.key, required this.child, this.onSubmit, this.controller});