containsAll method Null safety
override
Whether this set contains all the elements of other
.
Implementation
bool containsAll(Iterable<Object?> other) {
for (var o in other) {
if (!contains(o)) return false;
}
return true;
}
Whether this set contains all the elements of other
.
bool containsAll(Iterable<Object?> other) {
for (var o in other) {
if (!contains(o)) return false;
}
return true;
}