valuesBy<T> method

Iterable valuesBy<T>(
  1. dynamic val, {
  2. List anyTags = const [],
  3. List allTags = const [],
})
override

Get all the values on all links of this node but by Generic

Equivalent to values(val, T)

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

Implementation

Iterable valuesBy<T>(val,
        {List anyTags = const [], List allTags = const []}) =>
    values(val, T, anyTags: anyTags, allTags: allTags);