html function

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

Implementation

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