Creates an unmodifiable list containing all elements
.
The Iterator of elements
provides the order of the elements.
An unmodifiable list cannot have its length or elements changed. If the elements are themselves immutable, then the resulting list is also immutable.
Source
external factory List.unmodifiable(Iterable elements);