delete method

Future<void> delete()

Deletes this edge.

This removes the relationship between sourceKref and targetKref for the stored edgeType. Metadata captured on the edge is also removed.

await edge.delete();

Implementation

Future<void> delete() async {
  await client.deleteEdge(sourceKref.uri, targetKref.uri, edgeType);
}