logInfo method

void logInfo(
  1. String message
)

Logs an informational message in orange color with [INFO] prefix.

Parameters:

  • message - The informational message to display

Implementation

void logInfo(String message) => log("[INFO] $message", level: LogLevel.info);