tabbable property

  1. @override
set tabbable (bool value)
override

Moves focus item into (tabIndex='0') or out of (tabIndex='-1') tab order.

Implementation

@override
set tabbable(bool value) {
  tabIndex = value ? '0' : '-1';
  _changeDetectorRef.markForCheck();
}