focus method
Item/component focuses itself
Implementation
@override
void focus() {
if (!_autoFocus) return;
if (_focusable != null) {
_focusable!.focus();
} else {
super.focus();
}
}
Item/component focuses itself
@override
void focus() {
if (!_autoFocus) return;
if (_focusable != null) {
_focusable!.focus();
} else {
super.focus();
}
}