tabindex property

  1. @Input()
set tabindex (String? value)

The tab index of the component.

The value is used if tabbable is true and disabled is false.

Implementation

@Input()
set tabindex(String? value) {
  _hostTabIndex = value;
}