focused property
If non-null, sets the SemanticsNode.isFocused
semantic to the given value.
Implementation
bool get focused => _focused;
Implementation
set focused(bool value) {
if (focused == value)
return;
_focused = value;
markNeedsSemanticsUpdate();
}