CacheLoader<K, V> typedef
CacheLoader<K, V> =
Future<V?> Function(K key)
Loads the value for a key from the backing store (null = absent).
Implementation
typedef CacheLoader<K, V> = Future<V?> Function(K key);