Form constructor
const
Form({
- Key? key,
- required Widget child,
- VoidCallback? onSubmitted,
- bool autovalidate = false,
Implementation
const Form({
super.key,
required this.child,
this.onSubmitted,
this.autovalidate = false,
});