deleteCustomObjectById function

Future<void> deleteCustomObjectById(
  1. String className,
  2. String id
)

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