Deletes items with ids from the repository
ids
@override Future<int> deleteAll(Iterable<int> ids) { return db!.delete(_tableCacheObject, where: '${CacheObject.columnId} IN (${ids.join(',')})'); }