logInfo function

void logInfo(
  1. String message
)

Logs an informational message to the console in blue.

Implementation

void logInfo(String message) => print(_blue('[INFO] $message'));