video_cache_manager.dart 296 B

12345678910111213
  1. import 'package:flutter_cache_manager/flutter_cache_manager.dart';
  2. class VideoCacheManager {
  3. static const key = 'cached-video-data';
  4. static CacheManager instance = CacheManager(
  5. Config(
  6. key,
  7. maxNrOfCacheObjects: 50,
  8. stalePeriod: const Duration(days: 3),
  9. ),
  10. );
  11. }