CollectiveValueProperties<V> constructor

CollectiveValueProperties<V>({
  1. Cell? bind,
  2. TestCollective<dynamic, Collective> test,
  3. CollectiveReceptor<dynamic, Signal, Signal> receptor,
})

Creates basic properties for a CollectiveValue.

Parameters:

  • bind: Cell to bind to for reactive updates
  • test: Validation rules for the value

Implementation

factory CollectiveValueProperties({
  Cell? bind,
  TestCollective test,
  CollectiveReceptor receptor,
}) = _CollectiveValueProperties<V,List<V>>;