LxList<E>.from constructor

LxList<E>.from(
  1. Iterable<E> elements
)

Creates an LxList from an existing Iterable.

Implementation

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