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