fieldset function
A labelled group of form controls.
Implementation
Node fieldset({
String? id,
String? classes,
Style? style,
List<Node>? children,
bool disabled = false,
}) {
return Node(
tag: 'fieldset',
attrs: {'id': id, 'class': classes, 'style': _styleAttr(style)},
children: children,
boolAttrs: [if (disabled) 'disabled'],
);
}