I figured it out. here's what I did. @Viorel . Please suggest if there's also a better way to do. I love to code. Thank you :)
JDocOpearion = New JsonPatchOperation
Dim SRCWitem As New WorkItem
Dim WitRelations As New WorkItemRelation
SRCWitem = WitClient.GetWorkItemAsync(SourceWorkItemID).Result
WitRelations.Rel = "System.LinkTypes.Hierarchy-Reverse"
WitRelations.Title = "Azure devops"
WitRelations.Url = SRCWitem.Url
With JDocOpearion
.Path = "/relations/-"
.Operation = Microsoft.VisualStudio.Services.WebApi.Patch.Operation.Add
.Value = WitRelations /* I added the workitemrelations object */
End With
JSDocument.Add(JDocOpearion)
Dim a As Object
a = WitClient.CreateWorkItemAsync(JSDocument, ProjectName, "Epic")