setTabbable method
Makes the index tab focusable and makes all other tabs unfocusable.
Implementation
void setTabbable(int index) {
if (index < 0 || index >= _length) return;
for (var i in _children) {
i.tabbable = false;
}
_children[index].tabbable = true;
}