addInterceptor method

RequestConfig addInterceptor(
  1. Interceptor interceptor
)

Implementation

RequestConfig addInterceptor(Interceptor interceptor) {
  _interceptors.add(interceptor);
  return this;
}