yellow method

PrintColored yellow(
  1. String text
)

Implementation

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