InterceptorsWrapper constructor

InterceptorsWrapper({
  1. InterceptorSendCallback? onRequest,
  2. InterceptorSuccessCallback? onResponse,
  3. InterceptorErrorCallback? onError,
})

Implementation

InterceptorsWrapper({
  InterceptorSendCallback? onRequest,
  InterceptorSuccessCallback? onResponse,
  InterceptorErrorCallback? onError,
})  : __onRequest = onRequest,
      __onResponse = onResponse,
      __onError = onError;