DioCacheInterceptor constructor

DioCacheInterceptor({
  1. required CacheOptions options,
})

Implementation

DioCacheInterceptor({required CacheOptions options})
    : assert(options.store != null),
      _options = options,
      _store = options.store!;