feat: full local assets / album sync
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
import 'dart:io';
|
||||
|
||||
extension ClearPhotoManagerCacheExtension on File {
|
||||
Future<void> deleteDarwinCache() async {
|
||||
if (Platform.isIOS) {
|
||||
try {
|
||||
await delete();
|
||||
} catch (_) {}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user