chainln method

PrintColored chainln(
  1. String text, [
  2. PrintColor? color,
  3. bool? isBold
])

Implementation

PrintColored chainln(String text, [PrintColor? color, bool? isBold]) {
  outputs.add(Output(text + "\n", color, isBold: isBold ?? false));
  return this;
}