Returns true if this iterable contains all elements from other.
other
bool containsAll(Iterable<T> other) { for (final T element in other) { if (!contains(element)) return false; } return true; }