where method

Printer<T> where(
  1. Predicate1<T> callback
)

Returns a printer that only prints the receiver if the predicate evaluates to true.

Implementation

Printer<T> where(Predicate1<T> callback) => WherePrinter<T>(this, callback);