mirror of
https://github.com/immich-app/immich.git
synced 2025-02-11 01:18:24 -05:00
11 lines
209 B
Dart
11 lines
209 B
Dart
import 'dart:io';
|
|
|
|
extension ClearPhotoManagerCacheExtension on File {
|
|
Future<void> deleteDarwinCache() async {
|
|
if (Platform.isIOS) {
|
|
try {
|
|
await delete();
|
|
} catch (_) {}
|
|
}
|
|
}
|
|
}
|