Ul constructor

Ul([
  1. String? value
])

The <ul> HTML element represents an unordered list of items, typically rendered as a bulleted list. Read more...

Implementation

Ul([super.value]) {
  tag = 'ul';
}