Deletes all entities with the given ids from the database.
ids
@override Future<void> deleteAllById(Iterable<String> ids) async { await Future.wait(ids.map((e) => deleteById(e))); }