clearCacheWithKey method
Clears the cache for the object with the given cacheEntryKey.
Implementation
@override
Future<void> clearCacheWithKey(String cacheEntryKey) async {
try {
await cacheEngine?.removeCacheEntry(key: cacheEntryKey);
} catch (_) {}
}