before method

Printer<T> before(
  1. Object other
)

Prints before another printer.

Implementation

Printer<T> before(Object other) =>
    SequencePrinter<T>([Printer<T>.wrap(other), this]);