options property - SelectElement class - dart:html library (original) (raw)

description

List<OptionElement> getoptions

Implementation

List<OptionElement> get options {
  dynamic options = this.querySelectorAll<OptionElement>('option');
  return new UnmodifiableListView(options.toList());
}