writeInYellow static method

void writeInYellow(
  1. String message
)

writes a message in yellow. Useful for warning messages.

Implementation

static void writeInYellow(String message) {
  stdout.writeln('\x1B[93m$message$_reset');
}