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