Menu constructor

Menu([
  1. String? value
])

The <menu> HTML element is described in the HTML specification as a semantic alternative to <ul>, but treated by browsers (and exposed through the accessibility tree) as no different than <ul>. Read more...

Implementation

Menu([super.value]) {
  tag = 'menu';
}