union method Null safety
- Set<
E> other
override
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
Set<E> union(Set<E> other) {
return toSet()..addAll(other);
}