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