delete method
- ChatId id
Deletes the ChatMessage 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.drafts)..where((e) => e.chatId.equals(id.val));
await stmt.go();
}, tag: 'draft.delete($id)');
}