getCustomObjectsByIds function

Future<PagedCustomObjectResult> getCustomObjectsByIds(
  1. String className,
  2. List<String> ids
)

Returns list of requested objects

className - name of the class of custom objects which you want to get ids - ids of custom objects which you want to get

Implementation

Future<PagedCustomObjectResult> getCustomObjectsByIds(
    String className, List<String> ids) {
  return GetCustomObjectQuery.byIds(className, ids).perform();
}