getAllSync method

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

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

Implementation

@override
List<OBJ?> getAllSync(List<Id> ids) {
  return _isarCollection.getAllSync(ids);
}