Option constructor

Option([
  1. String? value
])

The <option> HTML element is used to define an item contained in a <select>, an <optgroup>, or a <datalist> element. Read more...

Implementation

Option([super.value]) {
  tag = 'option';
}