delete method
- UserId id
Deletes the DtoSettings identified by the provided id
from the
database.
Implementation
Future<void> delete(UserId id) async {
_cache.remove(id);
await safe((db) async {
final stmt = db.delete(db.settings)
..where((e) => e.userId.equals(id.val));
await stmt.go();
_controllers[id]?.add(null);
});
}