ConfigurationPropertyQuery constructor

ConfigurationPropertyQuery({
  1. ContinuationToken? continuation,
  2. StringValue? path,
  3. StringValue? group,
  4. StringValue? typeName,
  5. StringValue? displayName,
  6. StringValue? category,
  7. 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;
}