ConfigurationValueQuery constructor

ConfigurationValueQuery({
  1. ContinuationToken? continuation,
  2. ConfigurationId? groupId,
  3. StringValue? displayName,
  4. StringValue? propertyGroup,
  5. StringValue? typeName,
  6. 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;
}