IdempotencyCache constructor

IdempotencyCache({
  1. Duration ttl = const Duration(minutes: 5),
  2. int maxEntries = 256,
  3. bool enabled = true,
})

Implementation

IdempotencyCache({
  this.ttl = const Duration(minutes: 5),
  this.maxEntries = 256,
  this.enabled = true,
});