delete method

Future<void> delete(
  1. ChatItemId id
)

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

Implementation

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

  await safe((db) async {
    final deleteItems = db.delete(db.chatItems);
    deleteItems.where((e) => e.id.equals(id.val));
    await deleteItems.goAndReturn();

    final deleteViews = db.delete(db.chatItemViews);
    deleteViews.where((e) => e.chatItemId.equals(id.val));
    await deleteViews.goAndReturn();
  }, tag: 'chat_item.delete($id)');
}