account property
TypedSettings?
get
account
Per-account settings for the logged-in account, or null when none selected.
Implementation
TypedSettings? get account {
final id = _activeAccountId;
if (id == null) return null;
return TypedSettings.account(_db, id);
}