after method

Printer<T> after(
  1. Object other
)

Prints something after another printer.

Implementation

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