take method

Printer<T> take(
  1. int count
)

Takes the first count characters.

Implementation

Printer<T> take(int count) => TakePrinter<T>(this, count);