mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-23 09:16:19 +01:00
8 lines
228 B
Dart
8 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();
|
||
|
}
|