Element.option constructor - Element - dart:html library (original) (raw)
Element.option()
Creates a new <option>
element.
This is equivalent to calling new Element.tag('option')
.
Implementation
factory Element.option() => new Element.tag('option');