info static method

void info({
  1. String tag = "",
  2. String message = "",
})

Logs an informational message.

If in debug mode, prints the message in blue color.

tag (optional) Tag to identify the source of the log message.

message The info message to be logged.

Implementation

static void info({String tag = "", String message = ""}) {
  _log('$tag INFO', message, ConsoleStatus.info);
}