getOutgoingEdgesByString method
Gets all neighboring edges of a source
that gets searched by string in graph
Implementation
@override
List<EpitaphEdge> getOutgoingEdgesByString(String source) {
List<EpitaphEdge> tmp = [];
tmp.addAll(graph[getVertexByString(source)]!);
return tmp;
}