deleteCustomObjectsByIds function

Future<DeleteItemsResult?> deleteCustomObjectsByIds(
  1. String className,
  2. List<String> ids
)

Returns DeleteItemsResult object with detailed information about deleting result

className - name of the class of custom objects which you want to delete ids - ids of custom objects which you want to delete

Implementation

Future<DeleteItemsResult?> deleteCustomObjectsByIds(
    String className, List<String> ids) {
  return DeleteCustomObjectsByIdsQuery(className, ids).perform();
}