Return a list of items with the specified unique ids.
Iterable<TModel> findByIds(List<String> ids) => items.values.where((e) { return ids.contains(itemId(e)); });