ol function

Node ol({
  1. bool? reversed,
  2. num? start,
  3. String? type,
  4. String? id,
  5. dynamic className,
  6. dynamic style,
  7. Map<String, dynamic> p = const {},
  8. Iterable<Node> c = const [],
})

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]);