separateRight method

Printer<T> separateRight(
  1. int width,
  2. int offset,
  3. String separator
)

Separates a string from the right side with a separator every width characters.

Implementation

Printer<T> separateRight(int width, int offset, String separator) =>
    SeparateRightPrinter<T>(this, width, offset, separator);