containsAll method

bool containsAll (Iterable<Object> other)
override

Returns whether this Set contains all the elements of other.

Implementation

bool containsAll(Iterable<Object> other) => _inner.containsAll(other);