delete method

Future<void> delete(
  1. ChatId id
)

Deletes the ChatCallCredentials identified by the provided id from the database.

Implementation

Future<void> delete(ChatId id) async {
  _cache.remove(id);

  await safe((db) async {
    final stmt = db.delete(db.chatCredentials)
      ..where((e) => e.chatId.equals(id.val));
    await stmt.go();
  });
}