CollectiveCell<E> constructor

CollectiveCell<E>(
  1. CollectiveProperties<E> properties, {
  2. Iterable<E>? elements,
})

Creates a CollectiveCell from properties

Implementation

CollectiveCell(CollectiveProperties<E> super.properties, {Iterable<E>? elements})
    : _properties = properties, super.fromProperties() {
  (_properties as CollectiveCellProperties)._initContainer(this, elements);
}