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