deleteCustomObjectsByIds function
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();
}