CollectiveCell<E> constructor
CollectiveCell<E> (
- CollectiveProperties<
E> properties, { - 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);
}