get method

dynamic get(
  1. dynamic from,
  2. dynamic to,
  3. dynamic key, {
  4. List anyTags = const [],
  5. List allTags = const [],
})
override

Get the value on the specified edge

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

if failed return null

Implementation

dynamic get(from, to, key,
        {List anyTags = const [], List allTags = const []}) =>
    tryGet(from, to, key, anyTags: anyTags, allTags: allTags).val;