containsIterable method

bool containsIterable(
  1. Iterable<Object?> iterable
)

Returns whether this set contains all the elements of iterable.

See containsAll. It iterates over iterable, which must therefore not change during the iteration.

Implementation

bool containsIterable(Iterable<Object?> iterable) =>
    _set.containsAll(iterable);