union method Null safety
- @override
- Set<
E> other
Creates a new set which contains all the elements of this set and other
.
That is, the returned set contains all the elements of this Set
and
all the elements of other
.
Implementation
@override
NotifiableSet<E> union(Set<E> other) =>
NotifiableSet<E>.of(_values.union(other));