UnionSet<E>.from constructor

*<Null safety>*

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

Implementation

UnionSet.from(Iterable<Set<E>> sets, {bool disjoint = false})
    : this(sets.toSet(), disjoint: disjoint);