1
0
Fork 0
mirror of https://gitlab.com/nkming2/nc-photos.git synced 2025-03-11 09:48:53 +01:00
nc-photos/app/lib/use_case/compat/v29.dart
2022-04-06 02:37:58 +08:00

7 lines
228 B
Dart

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();
}