getAll method

  1. @override
Future<List<OBJ?>> getAll(
  1. List<Id> ids
)
override

Get a list of objects by their ids or null if an object does not exist.

Implementation

@override
Future<List<OBJ?>> getAll(List<Id> ids) {
  return _spanHelper.asyncWrapInSpan(
    'getAll',
    () {
      return _isarCollection.getAll(ids);
    },
    dbName: _dbName,
    collectionName: name,
  );
}