union method Null safety

  1. @override
NotifiableSet<E> union(
  1. Set<E> other
)

Creates 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

@override
NotifiableSet<E> union(Set<E> other) =>
    NotifiableSet<E>.of(_values.union(other));