deleteAll method
Implementation
@override
Future<void> deleteAll(List<String> ids, {int batchSize = 999}) async {
if (ids.isEmpty || await getCollection() == null) {
return;
}
await points.delete(
DeletePoints(
wait: false,
collectionName: namespace,
points: PointsSelector(
points: PointsIdsList(ids: ids.map(_pointIdFor).toList()),
),
),
);
}