yellowBold method

PrintColored yellowBold(
  1. String text
)

Implementation

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