containsAll method Null safety

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

Whether this set contains all the elements of other.

Implementation

@override
bool containsAll(Iterable<Object?> other) => _values.containsAll(other);