ConfigurationPropertyQuery constructor
ConfigurationPropertyQuery({
- ContinuationToken? continuation,
- StringValue? path,
- StringValue? group,
- StringValue? typeName,
- StringValue? displayName,
- StringValue? category,
- bool? clientProperties,
Implementation
factory ConfigurationPropertyQuery({
$5.ContinuationToken? continuation,
$3.StringValue? path,
$3.StringValue? group,
$3.StringValue? typeName,
$3.StringValue? displayName,
$3.StringValue? category,
$core.bool? clientProperties,
}) {
final result = create();
if (continuation != null) result.continuation = continuation;
if (path != null) result.path = path;
if (group != null) result.group = group;
if (typeName != null) result.typeName = typeName;
if (displayName != null) result.displayName = displayName;
if (category != null) result.category = category;
if (clientProperties != null) result.clientProperties = clientProperties;
return result;
}