static void errorPrinter({ required String text, String? textWithoutColor, }) { AnsiPen pen = AnsiPen()..red(bold: true); print("${pen(text)} ${textWithoutColor ?? ""}"); }