isFocused property

bool isFocused

True if this toggleable has the input focus.

Implementation

bool get isFocused => _isFocused!;
void isFocused=(bool? value)

Implementation

set isFocused(bool? value) {
  if (value == _isFocused) {
    return;
  }
  _isFocused = value;
  notifyListeners();
}