h6 function

Node h6({
  1. String? id,
  2. dynamic className,
  3. dynamic style,
  4. Map<String, dynamic> p = const {},
  5. @deprecated Map<String, dynamic> props = const {},
  6. Iterable<Node> c = const [],
  7. @deprecated Iterable<Node> children = const [],
})

Implementation

Node h6(
        {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('h6', _apply([p, props], {'id': id, 'class': className, 'style': style}),
        [...c, ...children]);