isFocused property
True if this toggleable has the input focus.
Implementation
bool get isFocused => _isFocused!;
Implementation
set isFocused(bool? value) {
if (value == _isFocused) {
return;
}
_isFocused = value;
notifyListeners();
}