onError method
Called when an exception was occurred during the request.
Implementation
@override
void onError(DioError err, ErrorInterceptorHandler handler) {
if (Constants.enableDebugLog) {
debugPrint("");
debugPrint("--------------- error ---------------");
debugPrint(err.toString());
debugPrint(err.response.toString());
debugPrint("------------- error end ------------");
debugPrint("");
}
super.onError(err, handler);
}