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