updateCustomObjectsByCriteria function
Returns list of updated objects
className - name of the class of custom objects which you want to update
params - additional parameter for updating, see https://developers.connectycube.com/server/custom_objects?id=parameters-4
Implementation
Future<PagedCustomObjectResult> updateCustomObjectsByCriteria(String className,
[Map<String, dynamic>? params]) {
return UpdateCustomObjectByCriteriaQuery(className, params).perform();
}