containsAll method

bool containsAll(
  1. Iterable<T> list
)

Implementation

bool containsAll(Iterable<T> list) => toSet().containsAll(list);