onError method
Called when an exception was occurred during the request.
Implementation
@override
void onError(DioException err, ErrorInterceptorHandler handler) {
super.onError(err, handler);
if (!settings.enabled) {
return;
}
final accepted = settings.errorFilter?.call(err) ?? true;
if (!accepted) {
return;
}
try {
final message = '${err.requestOptions.uri}';
final httpErrorLog = DioErrorLog(
message,
dioException: err,
settings: settings,
);
_talker.logCustom(httpErrorLog);
} catch (_) {
//pass
}
}