setResponseCallBack method

BuildRequest<T> setResponseCallBack(
  1. dynamic responseCallBack(
    1. Response response
    )
)

Implementation

BuildRequest<T> setResponseCallBack(
    Function(Response response) responseCallBack) {
  this.onResponse = responseCallBack;
  return this;
}