onResponse method
Passes the response through without modification.
This interceptor does not process successful responses; they are passed to the next interceptor in the chain.
Implementation
@override
void onResponse(Response response, handler) {
return handler.next(response);
}