logWarning function

void logWarning(
  1. String message
)

Logs a warning message to the console in yellow.

Implementation

void logWarning(String message) => print(_yellow('[!] $message'));