info static method
Logs an informational message in blue.
Implementation
static String info(String message, {bool error = true}) {
String output = '{@blue}[INFO] $message{@end}';
out(output, error: error);
// Return for testing.
return output;
}