containsAny method

bool containsAny(
  1. Iterable<Object?> other
)

Implementation

bool containsAny(Iterable<Object?> other) => other.any((element) => contains(element));