CachedResource

@Serializable
data class CachedResource(val url: String, val type: Network.ResourceType, val response: Network.Response? = null, val bodySize: Double)

Information about the cached resource.

Constructors

Link copied to clipboard
constructor(url: String, type: Network.ResourceType, response: Network.Response? = null, bodySize: Double)

Properties

Link copied to clipboard

Cached response body size.

Link copied to clipboard

Cached response data.

Link copied to clipboard

Type of this resource.

Link copied to clipboard
val url: String

Resource URL. This is the url of the original network request.