printWarning static method

void printWarning(
  1. String message
)

Print warning message with yellow color

Implementation

static void printWarning(String message) {
  printColored('⚠ $message', color: 'yellow');
}