fieldset function
Implementation
Node fieldset({
bool? disabled,
String? form,
String? name,
String? id,
className,
style,
Map<String, dynamic> p = const {},
Iterable<Node> c = const [],
}) => h(
'fieldset',
_apply(
[p],
{
'disabled': disabled,
'form': form,
'name': name,
'id': id,
'class': className,
'style': style,
},
),
[...c],
);