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