CacheRule constructor

const CacheRule({
  1. Duration maxAge = const Duration(days: 30),
  2. StoreDirectoryType storeDirectory = StoreDirectoryType.temporary,
  3. bool checksum = false,
})

Implementation

const CacheRule({
  this.maxAge = const Duration(days: 30),
  this.storeDirectory: StoreDirectoryType.temporary,
  this.checksum: false,
});