0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-02-11 01:18:24 -05:00
immich/mobile-v2/lib/utils/extensions/file.extension.dart
2024-10-17 23:33:00 +05:30

11 lines
209 B
Dart

import 'dart:io';
extension ClearPhotoManagerCacheExtension on File {
Future<void> deleteDarwinCache() async {
if (Platform.isIOS) {
try {
await delete();
} catch (_) {}
}
}
}