read method
- UserId id
Returns the DtoSettings stored in the database by the provided id
, if
any.
Implementation
Future<DtoSettings?> read(UserId id) async {
final DtoSettings? existing = _cache[id];
if (existing != null) {
return existing;
}
return await safe<DtoSettings?>((db) async {
final stmt = db.select(db.settings)
..where((u) => u.userId.equals(id.val));
final SettingsRow? row = await stmt.getSingleOrNull();
if (row == null) {
return null;
}
return _SettingsDb.fromDb(row);
}, exclusive: false);
}