HttpResponseWrapper constructor
HttpResponseWrapper(
- HttpResponse? origin
Constructor.
origin
: the original response. Note: it can be null. However, if null, you can't call most of methods, includingorigin
. It is design to make it easier to implement a dummy response.
Implementation
HttpResponseWrapper(HttpResponse? origin): super(origin);