copyWithWrapped method
Implementation
ConvAIWorkspaceStoredSecretConfig copyWithWrapped(
{Wrapped<String>? type,
Wrapped<String>? secretId,
Wrapped<String>? name,
Wrapped<ConvAIStoredSecretDependencies>? usedBy}) {
return ConvAIWorkspaceStoredSecretConfig(
type: (type != null ? type.value : this.type),
secretId: (secretId != null ? secretId.value : this.secretId),
name: (name != null ? name.value : this.name),
usedBy: (usedBy != null ? usedBy.value : this.usedBy));
}