ConfigurationValueQuery constructor
ConfigurationValueQuery({
- ContinuationToken? continuation,
- ConfigurationId? groupId,
- StringValue? displayName,
- StringValue? propertyGroup,
- StringValue? typeName,
- StringValue? path,
Implementation
factory ConfigurationValueQuery({
$5.ContinuationToken? continuation,
$0.ConfigurationId? groupId,
$3.StringValue? displayName,
$3.StringValue? propertyGroup,
$3.StringValue? typeName,
$3.StringValue? path,
}) {
final result = create();
if (continuation != null) result.continuation = continuation;
if (groupId != null) result.groupId = groupId;
if (displayName != null) result.displayName = displayName;
if (propertyGroup != null) result.propertyGroup = propertyGroup;
if (typeName != null) result.typeName = typeName;
if (path != null) result.path = path;
return result;
}