CacheInterceptor.builder constructor

CacheInterceptor.builder(
  1. CacheInterceptorBuilder builder
)

Builds a CacheInterceptor out of a CacheInterceptorBuilder

  • builder: The CacheInterceptorBuilder

Implementation

CacheInterceptor.builder(CacheInterceptorBuilder builder)
    : this._(
          onRequest: builder.onRequest,
          onResponse: builder.onResponse,
          onError: builder.onError);