isFocused property
Whether the owning RenderObject currently holds the input focus.
Implementation
bool get isFocused => _hasFlag(SemanticsFlag.isFocused);
Implementation
set isFocused(bool value) {
_setFlag(SemanticsFlag.isFocused, value);
}
Whether the owning RenderObject currently holds the input focus.
bool get isFocused => _hasFlag(SemanticsFlag.isFocused);
set isFocused(bool value) {
_setFlag(SemanticsFlag.isFocused, value);
}