isFocusable property Null safety
Whether the owning RenderObject can hold the input focus.
Implementation
bool get isFocusable => _hasFlag(SemanticsFlag.isFocusable);
Implementation
set isFocusable(bool value) {
_setFlag(SemanticsFlag.isFocusable, value);
}