getMultiCached method
V
getMultiCached(
- K key,
- C context,
- M cacheInstantiator(),
- V computer(),
Implementation
V getMultiCached(
K key,
C context,
M Function() cacheInstantiator,
V Function() computer,
) {
var (o, cache) = _getIfCached(key, context, cacheInstantiator);
if (o != null) return o;
return cache.getCached(key, computer);
}