union method Null safety
inherited
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<String> union(Set<String> other) => readClasses().union(other);