DioCacheConfig constructor

DioCacheConfig({
  1. Duration maxAge = const Duration(days: 7),
  2. Duration? maxStale,
  3. String? primaryKey,
  4. String? subKey,
  5. bool? forceRefresh,
})

Implementation

DioCacheConfig(
    {this.maxAge = const Duration(days: 7),
    this.maxStale,
    this.primaryKey,
    this.subKey,
    this.forceRefresh});