form constructor
const
form(
- List<
Component> children, { - String? action,
- FormMethod? method,
- FormEncType? encType,
- AutoComplete? autoComplete,
- String? name,
- bool noValidate = false,
- Target? target,
- String? id,
- String? classes,
- Styles? styles,
- Map<
String, String> ? attributes, - Map<
String, EventCallback> ? events, - Key? key,
The <form> HTML element represents a document section containing interactive controls for submitting information.
Implementation
const form(
this.children, {
this.action,
this.method,
this.encType,
this.autoComplete,
this.name,
this.noValidate = false,
this.target,
this.id,
this.classes,
this.styles,
this.attributes,
this.events,
super.key,
});