greenBold method

PrintColored greenBold(
  1. String text
)

Implementation

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