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