whiteBold method

PrintColored whiteBold(
  1. String text
)

Implementation

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