updateCustomObjectsByCriteria function

Future<PagedCustomObjectResult> updateCustomObjectsByCriteria(
  1. String className, [
  2. Map<String, dynamic>? params
])

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