Find all the items that satisfy somoe criteria.
Iterable<TModel> findWhere(bool Function(TModel e) fn) => items.values.where(fn);