getEntry method

  1. @override
Future<CacheEntry?> getEntry(
  1. String name,
  2. String key
)

Returns the CacheEntry for the named cache value specified key.

  • name: The cache name
  • key: The cache key

Implementation

@override
Future<CacheEntry?> getEntry(String name, String key) {
  return _getEntry(name, key);
}