copyWithWrapped method

PostWorkspaceSecretResponseModel copyWithWrapped({
  1. Wrapped<String>? type,
  2. Wrapped<String>? secretId,
  3. Wrapped<String>? name,
})

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));
}