List<E>.unmodifiable constructor

List<E>.unmodifiable(Iterable elements)

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.

Implementation

external factory List.unmodifiable(Iterable elements);