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)
Content copied to clipboard
Store response in cache storage.