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');
}
}