containsAll method

bool containsAll(
  1. Iterable<T> list
)

Implementation

bool containsAll(Iterable<T> list) => !list.any((x) => !contains(x));