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