tryGetBy<T> method

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

Get the value on the specified edge but by Generic

Equivalent to get(from, to, T)

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

Implementation

Maybe tryGetBy<T>(from, to,
        {List anyTags = const [], List allTags = const []}) =>
    tryGet(from, to, T, anyTags: anyTags, allTags: allTags);