mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-07 21:48:14 -08:00
13 lines
332 B
Dart
13 lines
332 B
Dart
import 'package:flutter_cache_manager/flutter_cache_manager.dart';
|
|
|
|
class CustomCacheManager {
|
|
static const key = 'customCacheKey';
|
|
static CacheManager instance = CacheManager(
|
|
Config(
|
|
key,
|
|
stalePeriod: const Duration(days: 3),
|
|
maxNrOfCacheObjects: 250,
|
|
fileService: HttpFileService(),
|
|
),
|
|
);
|
|
}
|