hasEdgeToBy<T> method

bool hasEdgeToBy<T>(
  1. dynamic from,
  2. dynamic to, {
  3. List anyTags = const [],
  4. List allTags = const [],
})
override

Determine if there is such a valued directed link but by Generic

Equivalent to hasEdgeTo(from, to, T)

(Optional) Only if it matches any of anyTags and matches all items in allTags

Implementation

bool hasEdgeToBy<T>(from, to,
        {List anyTags = const [], List allTags = const []}) =>
    hasEdgeTo(from, to, T, anyTags: anyTags, allTags: allTags);