options property - SelectElement class - dart:html library (original) (raw)
List<OptionElement> getoptions
Implementation
List<OptionElement> get options {
dynamic options = this.querySelectorAll<OptionElement>('option');
return new UnmodifiableListView(options.toList());
}