addEdge method

  1. @override
void addEdge(
  1. V source,
  2. V target, {
  3. E? value,
})
override

Adds an edge between source and target vertex. Optionally associates the provided value with the edge. If the edge already exists, replaces the existing edge data.

Implementation

@override
void addEdge(V source, V target, {E? value}) =>
    delegate.addEdge(source, target, value: value);