addInterceptor method

DioUtils addInterceptor(
  1. Interceptor interceptor
)

Implementation

DioUtils addInterceptor(Interceptor interceptor) {
  _dio!.interceptors.add(interceptor);
  return this;
}