fieldset constructor

const fieldset(
  1. List<Component> children, {
  2. String? name,
  3. bool disabled = false,
  4. String? id,
  5. String? classes,
  6. Styles? styles,
  7. Map<String, String>? attributes,
  8. Map<String, EventCallback>? events,
  9. Key? key,
})

The <fieldset> HTML element is used to group several controls as well as labels (<label>) within a web form.

Implementation

const fieldset(
  this.children, {
  this.name,
  this.disabled = false,
  this.id,
  this.classes,
  this.styles,
  this.attributes,
  this.events,
  super.key,
});