info static method
Logs an informational message in blue.
Use this for general information that might be helpful to know but doesn't indicate a problem or success.
Example:
Logger.info('Processing file: example.svg');
Implementation
static void info(String message) {
print('${_blue}INFO: $message$_reset');
}