CollectiveValue<V>.fromProperties constructor

CollectiveValue<V>.fromProperties(
  1. CollectiveValueProperties<V> properties, {
  2. V? value,
})

Creates from properties with optional initial value.

Parameters:

  • properties: Configuration properties
  • value: Optional initial value

Implementation

factory CollectiveValue.fromProperties(CollectiveValueProperties<V> properties, {V? value}) = _CollectiveValue<V>.fromProperties;