getByIds method

List<T> getByIds(
  1. List<String> ids
)

Get multiple entities by IDs

Implementation

List<T> getByIds(List<String> ids) {
  return ids.map((id) => _entities[id]).whereType<T>().toList();
}