BetterPlayerCacheConfiguration constructor

const BetterPlayerCacheConfiguration({
  1. bool useCache = false,
  2. int maxCacheSize = 10 * 1024 * 1024,
  3. int maxCacheFileSize = 10 * 1024 * 1024,
  4. int preCacheSize = 3 * 1024 * 1024,
  5. String? key,
})

Implementation

const BetterPlayerCacheConfiguration(
    {this.useCache = false,
    this.maxCacheSize = 10 * 1024 * 1024,
    this.maxCacheFileSize = 10 * 1024 * 1024,
    this.preCacheSize = 3 * 1024 * 1024,
    this.key});