ente/lib/core/cache/video_cache_manager.dart

13 lines
252 B
Dart
Raw Normal View History

2020-08-13 20:03:29 +00:00
import 'package:flutter_cache_manager/flutter_cache_manager.dart';
2021-05-02 16:05:36 +00:00
class VideoCacheManager {
2020-08-13 20:03:29 +00:00
static const key = 'cached-video-data';
2021-05-02 16:05:36 +00:00
static CacheManager instance = CacheManager(
Config(
key,
maxNrOfCacheObjects: 50,
),
);
2020-08-13 20:03:29 +00:00
}