Returns true if this list contains all elements of items.
true
items
bool containsAllList(List<T> items) => items.every(contains);