bool containsAny(Iterable<T> otherList) { for (final element in otherList) { if (contains(element)) { return true; } } return false; }