ConfigurationValue constructor
ConfigurationValue({
- RowVersion? rowVersion,
- ConfigurationValueId? id,
- ConfigurationId? groupId,
- ConfigurationProperty? property,
- Iterable<
Any> ? values,
Implementation
factory ConfigurationValue({
$5.RowVersion? rowVersion,
$0.ConfigurationValueId? id,
$0.ConfigurationId? groupId,
ConfigurationProperty? property,
$core.Iterable<$6.Any>? values,
}) {
final result = create();
if (rowVersion != null) result.rowVersion = rowVersion;
if (id != null) result.id = id;
if (groupId != null) result.groupId = groupId;
if (property != null) result.property = property;
if (values != null) result.values.addAll(values);
return result;
}