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