containsAll method

bool containsAll(
  1. Iterable<E> other
)

Returns true if this set contains all elements from other.

Implementation

bool containsAll(Iterable<E> other) {
  return other.every(contains);
}