optionsInput property

  1. @Input('selectionOptions')
  2. @override
set optionsInput (dynamic value)
override

Sets the available options for the selection component.

Accepts either a SelectionOptions or a List. If a List is passed, the StringSelectionOptions class will be used to create the selection options.

Implementation

@Input('selectionOptions')
@override
set optionsInput(dynamic value) {
  _filterScheduled = true;
  super.optionsInput = value;
}