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