hasFocus property Null safety
Whether the editable is currently focused.
Implementation
bool get hasFocus => _hasFocus;
Implementation
set hasFocus(bool value) {
assert(value != null);
if (_hasFocus == value) {
return;
}
_hasFocus = value;
markNeedsSemanticsUpdate();
}