CacheResponse constructor

CacheResponse(
  1. String url,
  2. String method,
  3. Map<String, List<String>> headers,
  4. int code,
  5. int length,
  6. Source body,
)

Implementation

CacheResponse(
  this.url,
  this.method,
  this.headers,
  this.code,
  this.length,
  this.body,
);