MemoryPressureConfig constructor

const MemoryPressureConfig({
  1. double moderateEvictionFraction = 0.20,
  2. double criticalEvictionFraction = 0.50,
  3. bool ignoreBackgroundPressure = true,
})

Implementation

const MemoryPressureConfig({
  this.moderateEvictionFraction = 0.20,
  this.criticalEvictionFraction = 0.50,
  this.ignoreBackgroundPressure = true,
});