info static method

void info(
  1. dynamic message, {
  2. bool alwaysPrint = false,
})

Logs an informational message to the console.

Only logs in debug mode unless alwaysPrint is set to true.

Implementation

static void info(dynamic message, {bool alwaysPrint = false}) {
  _log(message, type: 'info', alwaysPrint: alwaysPrint);
}