callWith
inline fun <ReqBody : Any, ResBody : Any> Call.Factory.callWith(noinline builder: Request.Builder<ReqBody>.() -> Unit): Call<ReqBody, ResBody>
Constructs a call with the passed Request Builder instance. The Request and Response Types are passed as reified Generic Parameters.
Parameters
builder
A Request.Builder receiver function that help in constructing the request.