$ul function

DOMElement $ul({
  1. Object? id,
  2. Object? classes,
  3. Object? style,
  4. Map<String, String>? attributes,
  5. Object? content,
  6. bool? hidden,
  7. bool commented = false,
})

Creates a ul node.

Implementation

DOMElement $ul(
        {Object? id,
        Object? classes,
        Object? style,
        Map<String, String>? attributes,
        Object? content,
        bool? hidden,
        bool commented = false}) =>
    $tag('ul',
        id: id,
        classes: classes,
        style: style,
        attributes: attributes,
        content: content,
        hidden: hidden,
        commented: commented);