PixaCacheWriteContext constructor

const PixaCacheWriteContext({
  1. required PixaExecutionContext execution,
  2. Duration? ttl,
  3. bool privateEntry = false,
})

Creates a cache write context.

Implementation

const PixaCacheWriteContext({
  required this.execution,
  this.ttl,
  this.privateEntry = false,
});