UnmodifiableCollectiveCell<E> constructor

UnmodifiableCollectiveCell<E>(
  1. CollectiveProperties<E> properties, {
  2. bool unmodifiableElement = true,
  3. Iterable<E>? elements,
})

Creates an UnmodifiableCollectiveCell from properties

Implementation

UnmodifiableCollectiveCell(super.properties, {bool unmodifiableElement = true, super.elements})
    : _unmodifiableElement = unmodifiableElement, super();