focusedIndex property

int get focusedIndex

The index of the option that has keyboard focus.

Implementation

int get focusedIndex => _focusedIndex;
set focusedIndex (int index)

Implementation

set focusedIndex(int index) {
  if (_focusedIndex != index) {
    _focusedIndex = index;
    _notify();
  }
}