TransformingPredicate<I, T> constructor

TransformingPredicate<I, T>(
  1. Predicate<I> predicate,
  2. Transformation<I, FutureOr<T>> transformer, [
  3. String? description
])

Implementation

TransformingPredicate(
    Predicate<I> predicate, Transformation<I, FutureOr<T>> transformer,
    [String? description])
    : _predicate = predicate,
      _transformer = transformer,
      _description = description;