Iterable<V> orWhere(bool predicate(V v)) { if (this == null) return const []; return this!.where(predicate); }