form constructor

const form(
  1. List<Component> children, {
  2. String? action,
  3. FormMethod? method,
  4. FormEncType? encType,
  5. AutoComplete? autoComplete,
  6. String? name,
  7. bool noValidate = false,
  8. Target? target,
  9. String? id,
  10. String? classes,
  11. Styles? styles,
  12. Map<String, String>? attributes,
  13. Map<String, EventCallback>? events,
  14. 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,
});