info static method
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);
}