Set<E> union(Set<E> other)

Returns 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.

Source

Set<E> union(Set<E> other) {
  return _clone()..addAll(other);
}