delete method
- ChatItemId id
Deletes the ChatCallCredentials identified by the provided id
from the database.
Implementation
Future<void> delete(ChatItemId id) async {
_cache.remove(id);
await safe((db) async {
final stmt = db.delete(db.callCredentials)
..where((e) => e.callId.equals(id.val));
await stmt.go();
}, tag: 'call_credentials.delete($id)');
}