addAll method
Adds all elements from the given iterable to this set.
Elements already present in the set are not added again. Notifies subscribers if any elements were added.
Implementation
@override
void addAll(Iterable<E> other) {
_checkLength(() => peek.addAll(other));
}