redBold method

PrintColored redBold(
  1. String text
)

Implementation

PrintColored redBold(String text) {
  outputs.add(Output(text, PrintColor.red, isBold: true));
  return this;
}