CacheConfig constructor

const CacheConfig({
  1. bool enabled = true,
  2. List<int> breakpoints = const [],
  3. int minTokensForCache = 1024,
})

Implementation

const CacheConfig({
  this.enabled = true,
  this.breakpoints = const [],
  this.minTokensForCache = 1024,
});