headerInterceptor property

Interceptor get headerInterceptor

Implementation

static Interceptor get headerInterceptor {
  _headerInterceptor ??= InterceptorsWrapper(
    onRequest: (RequestOptions options, RequestInterceptorHandler handler) {
      return handler.next(options);
    },
  );
  return _headerInterceptor!;
}