store

suspend fun CacheStorage.store(response: HttpResponse, varyKeys: Map<String, String>, isShared: Boolean = false): CachedResponseData

Store response with varyKeys in cache storage.


Deprecated (with error)

Please use method with `response.varyKeys()` and `isShared` arguments

Replace with

store(response, response.varyKeys(), isShared)

Store response in cache storage.