valueFromsBy<T> method

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

Get all values link to val but by Generic

Equivalent to valueFroms(val, T)

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

Implementation

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