where method
Implementation
List<T> where(bool Function(T) predicate) {
final list = _harnCollection.where((e) => predicate(fromMap(e)));
final response = list.map((e) => fromMap(e)).toList();
harnLog.register({"where": response});
return response;
}