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 isar.readAsync((isar) => isar.collection<ID, OBJ>().getAll(ids));
}