delete method
- UserId id
Deletes the DtoBlocklistRecord 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.blocklist)
..where((e) => e.userId.equals(id.val));
await stmt.go();
}, tag: 'blocklist.delete($id)');
}