containsAll method

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

Returns true if this set contains all elements in other.

This is a non-mutating query operation.

Implementation

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