info static method
Log an info message
to the console.
It will only print if your app's environment is in debug mode.
You can override this by setting alwaysPrint
= true.
Implementation
static info(dynamic message, {bool alwaysPrint = false}) {
_loggerPrint(message ?? "", 'info', alwaysPrint);
}