getCustomObjectsByClassName function

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

Returns list of requested objects

className - name of the class of custom objects which you want to get params - additional parameter for search, see https://developers.connectycube.com/server/custom_objects?id=options-to-apply

Implementation

Future<PagedCustomObjectResult> getCustomObjectsByClassName(String className,
    [Map<String, dynamic>? params]) {
  return GetCustomObjectQuery.byClassName(className, params).perform();
}