remove method
Removes one cached thumbnail.
Implementation
@override
Future<void> remove(CPDFPageThumbnailKey key) async {
final file = await _fileForKey(key);
if (await file.exists()) {
await file.delete();
}
}
Removes one cached thumbnail.
@override
Future<void> remove(CPDFPageThumbnailKey key) async {
final file = await _fileForKey(key);
if (await file.exists()) {
await file.delete();
}
}