containsAny method
Checks if any elements in the specified collection are contained in
this collection.
Implementation
bool containsAny(Iterable<E> collection) {
  for (final element in collection) {
    if (contains(element)) return true;
  }
  return false;
}