HttpCache constructor

HttpCache({
  1. int maxCacheMemory = 0,
  2. Duration timeout = _noDuration,
  3. bool verbose = false,
})

Implementation

HttpCache(
    {int maxCacheMemory = 0,
    Duration timeout = _noDuration,
    this.verbose = false}) {
  this.maxCacheMemory = maxCacheMemory;
  this.timeout = timeout;
}