printLogYellow function

void printLogYellow(
  1. String message
)

Implementation

void printLogYellow(String message) {
  print('\x1B[33m$message\x1B[0m');
}