Returns a new set which contains all the elements of this set and other.
other
Set<T> union(Set<T> other) { return Set<T>.from(_container.union(other._container)); }