containsAny method

bool containsAny(
  1. Iterable<T> other
)

Whether any element of other is contained in this iterable.

Implementation

bool containsAny(Iterable<T> other) => other.any(contains);