PlexCacheConfig constructor

const PlexCacheConfig({
  1. Duration maxAge = const Duration(minutes: 5),
  2. Duration? maxStale,
  3. String cacheKey(
    1. String url,
    2. Map<String, dynamic>? query
    )?,
})

Implementation

const PlexCacheConfig({
  this.maxAge = const Duration(minutes: 5),
  this.maxStale,
  this.cacheKey,
});