e static method
Error log
Implementation
static void e(String tag, String msg, [Object? error, StackTrace? stack]) {
if (!errorLogsEnabled) return;
debugPrint("[ERROR][$tag]: $msg");
if (error != null) debugPrint("Error: $error");
if (stack != null) debugPrint("StackTrace: $stack");
}