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