containsAll method

bool containsAll(
  1. Iterable<T> other
)

Whether every element of other is contained in this iterable.

Implementation

bool containsAll(Iterable<T> other) => other.every(contains);