de static method
Debug log with error/exception
Implementation
static void de(String tag, String msg, [Object? error, StackTrace? stack]) {
if (!_internalLogsEnabled) return;
debugPrint("[DEBUG-ERROR][$tag]: $msg");
if (error != null) debugPrint("Error: $error");
if (stack != null) debugPrint("StackTrace: $stack");
}