hasFocus property

bool hasFocus

Whether the editable is currently focused.

Implementation

bool get hasFocus => _hasFocus;
void hasFocus=(bool value)

Implementation

set hasFocus(bool value) {
  if (_hasFocus == value) {
    return;
  }
  _hasFocus = value;
  markNeedsSemanticsUpdate();
}