Prints the message in red using AnsiStyle.
void printRed(Object? message) { final formatted = AnsiStyle.fgRed.formatted(message); print(formatted); }