deleteCustomObjectById function
className
- name of the class of custom objects which you want to delete
id
- id of custom object which you want to delete
Implementation
Future<void> deleteCustomObjectById(String className, String id) {
return DeleteCustomObjectByIdQuery(className, id).perform();
}