getEntry method
Returns the CacheEntry for the named cache value specified key.
name: The cache namekey: The cache key
Implementation
@override
Future<CacheEntry?> getEntry(String name, String key) {
return Future.value(_cacheStore(name)[key]);
}