label function
Implementation
Element label(
dynamic children, {
String? htmlFor,
String? id,
String? className,
Map<String, dynamic>? attributes,
}) => _el(
'label',
children,
id: id,
className: className,
attributes: {'for': htmlFor, ...?attributes},
);