delete method
- ChatId id
Deletes the DtoChat identified by the provided id
from the database.
Implementation
Future<void> delete(ChatId id) async {
_cache.remove(id);
_controllers[id]?.add(null);
await safe((db) async {
final stmt = db.delete(db.chats)..where((e) => e.id.equals(id.val));
await stmt.go();
}, tag: 'delete($id)');
}