containsAll method

  1. @override
bool containsAll(
  1. Iterable<Object?> other
)
override

Whether this set contains all the elements of other.

Implementation

@override
bool containsAll(Iterable<Object?> other) {
  return _collective.containsAll(other);
}