error static method
Implementation
static void error(dynamic message, [Object? error, StackTrace? stackTrace]) {
_printLog('❌ ERR ○ DioCache', message);
if (kDebugMode) {
if (error != null) print('🔴 Error: $error');
if (stackTrace != null) print('📜 StackTrace: $stackTrace');
}
}