log static method
Generic logger. You can always call Logger.log(...) if you need a custom color.
Implementation
static void log(
String message, {
String prefix = 'ℹ️',
String color = _cyan,
}) {
// The timestamp has been removed.
stdout.writeln('$color$prefix $message$_reset');
}