findByIds method

Iterable<TModel> findByIds(
  1. List<String> ids
)

Return a list of items with the specified unique ids.

Implementation

Iterable<TModel> findByIds(List<String> ids) => items.values.where((e) {
  return ids.contains(itemId(e));
});