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