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