selectableState property

SelectableOption get selectableState

Display state of this menu item.

Implementation

SelectableOption get selectableState => _selectableState;
set selectableState (SelectableOption value)

Implementation

set selectableState(SelectableOption value) {
  if (value == _selectableState) return;

  _selectableState = value;
  notifyPropertyChange(#selectableState, _selectableState, value);
}