containsAny method

bool containsAny(
  1. Iterable<T> list
)

Implementation

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