delete method

Future<void> delete(
  1. UserId id
)

Deletes the DtoMyUser 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.myUsers)..where((e) => e.id.equals(id.val));
    await stmt.go();

    _controllers[id]?.add(null);
  }, tag: 'my_user.delete($id)');
}