nc-photos/app/lib/use_case/compat/v29.dart

8 lines
228 B
Dart
Raw Normal View History

2021-09-16 12:24:17 +02:00
import 'package:flutter_cache_manager/flutter_cache_manager.dart';
/// Compatibility helper for v29
class CompatV29 {
/// Clear the old cache
static Future<void> clearDefaultCache() => DefaultCacheManager().emptyCache();
}