orWhere method

Iterable<V> orWhere(
  1. bool predicate(
    1. V v
    )
)

Implementation

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