copyWith method
ConvAIWorkspaceStoredSecretConfig
copyWith({
- String? type,
- String? secretId,
- String? name,
- ConvAIStoredSecretDependencies? usedBy,
Implementation
ConvAIWorkspaceStoredSecretConfig copyWith(
{String? type,
String? secretId,
String? name,
ConvAIStoredSecretDependencies? usedBy}) {
return ConvAIWorkspaceStoredSecretConfig(
type: type ?? this.type,
secretId: secretId ?? this.secretId,
name: name ?? this.name,
usedBy: usedBy ?? this.usedBy);
}