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