UnionSet<E> constructor

*<Null safety>*

UnionSet<E>(Set<Set<E>> sets, {bool disjoint: false})

Implementation

UnionSet(Set<Set<E>> sets, {bool disjoint = false})
    : _sets = sets,
      _disjoint = disjoint;