where method

FilterNode<T> where(
  1. bool predicate(
    1. T
    ), {
  2. String? name,
})

Implementation

FilterNode<T> where(bool Function(T) predicate, {String? name}) =>
    FilterNode(this, predicate, name: name);