deleteAll method

Future<void> deleteAll(
  1. List<String> ids, {
  2. String? userId,
})

Delete multiple entities from the remote data source.

Implementation

Future<void> deleteAll(List<String> ids, {String? userId}) async {
  for (final id in ids) {
    await delete(id, userId: userId);
  }
}