containsAny method

bool containsAny(
  1. Iterable<V> other
)

Check if contains any elements in the other list.

Implementation

bool containsAny(Iterable<V> other) => fn.containsAny(this, other);