LxSet<E>.from constructor
LxSet<E>.from (
- Iterable<
E> elements
Implementation
factory LxSet.from(Iterable<E> elements) {
return LxSet<E>(Set<E>.from(elements));
}