UnmodifiableCollective<E>.fromProperties constructor
UnmodifiableCollective<E>.fromProperties (
- CollectiveProperties<
E> properties, { - bool unmodifiableElement = true,
- Iterable<
E> ? elements,
Implementation
factory UnmodifiableCollective.fromProperties(CollectiveProperties<E> properties, {bool unmodifiableElement = true, Iterable<E>? elements}) {
return _UnmodifiableCollective(properties: properties, unmodifiableElement: unmodifiableElement, elements: elements);
}