getAllAsync method

Future<List<OBJ?>> getAllAsync(
  1. List<ID> ids
)

Get a list of objects by their ids. Objects in the list are null if they don't exist.

Implementation

Future<List<OBJ?>> getAllAsync(List<ID> ids) {
  return databaseUniverse.readAsync(
    (databaseUniverse) => databaseUniverse.collection<ID, OBJ>().getAll(ids),
  );
}