deleteCacheDocument method
Deletes the cache file for the request.
Implementation
Future<void> deleteCacheDocument() async {
if (await hasCachedDocument()) {
await (await getCacheFile()).delete();
}
}
Deletes the cache file for the request.
Future<void> deleteCacheDocument() async {
if (await hasCachedDocument()) {
await (await getCacheFile()).delete();
}
}