Sets the value of this CollectiveValue and returns true if successful.
@override bool set(V? value) { if (this is! Unmodifiable) { return _setValue(value).isNotEmpty; } return false; }