union method

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

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.

Implementation

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