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

Source

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