CollectiveProperties<E> constructor

CollectiveProperties<E>({
  1. Cell? bind,
  2. ContainerType container,
  3. TestCollective<dynamic, Collective> test,
  4. MapObject? mapObject,
})

Factory constructor for basic configuration.

Parameters:

  • bind: Optional parent Cell to link with for reactivity
  • container: The ContainerType defining collection behavior
  • test: Validation rules of type TestCollective
  • map: Optional MapObject for element transformations

Implementation

factory CollectiveProperties({
  Cell? bind,
  ContainerType container,
  TestCollective test,
  MapObject? mapObject
}) = CollectiveCellProperties<E, Iterable<E>>;