ConfigurationValue constructor

ConfigurationValue({
  1. RowVersion? rowVersion,
  2. ConfigurationValueId? id,
  3. ConfigurationId? groupId,
  4. ConfigurationProperty? property,
  5. 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;
}