CollectiveList<E>.unmodifiable constructor
CollectiveList<E>.unmodifiable (
- CollectiveList<
E> bind, { - bool unmodifiableElement = true,
Creates an unmodifiable CollectiveList from elements
Implementation
factory CollectiveList.unmodifiable(CollectiveList<E> bind, {bool unmodifiableElement = true}) {
return UnmodifiableCollectiveList<E>.bind(bind, unmodifiableElement: unmodifiableElement);
}