inputTabIndex property
int
get
inputTabIndex
Textarea element tabindex.
Disabled textarea is not interactive and should not receive focus on TAB.
Implementation
int get inputTabIndex => disabled ? -1 : 0;