value property
The value of this CollectiveValue
Implementation
@override
V? get value => _properties.getter(this, _properties.container);
Sets the value of this CollectiveValue
Implementation
@override
set value(V? value) {
if (this is! Unmodifiable) {
set(value);
}
}