delete method

Future<void> delete(
  1. UserId id
)

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