PrefetchConfig constructor

const PrefetchConfig({
  1. int prefetchAhead = 3,
  2. int prefetchBehind = 1,
  3. int keepRange = 5,
  4. int maxConcurrent = 3,
})

Implementation

const PrefetchConfig({
  this.prefetchAhead = 3,
  this.prefetchBehind = 1,
  this.keepRange = 5,
  this.maxConcurrent = 3,
});