containsAll method

bool containsAll(
  1. Iterable<T> other
)

Whether this set contains all the elements of other.

Implementation

bool containsAll(Iterable<T> other) {
  return _container.containsAll(other);
}