getByIds static method

List<LocationQuery?> getByIds(
  1. List<int> ids
)

Returns list of locations by ids.

Sync getAll call (should not be used in context with async create)

Implementation

static List<LocationQuery?> getByIds(List<int> ids) {
  return IsarDB.isar.locationQuery.getAllSync(ids);
}