getMultiCachedAsync method
Implementation
FutureOr<V> getMultiCachedAsync(
K key,
C context,
M Function() cacheInstantiator,
FutureOr<V> Function() computer,
) {
var (o, cache) = _getIfCached(key, context, cacheInstantiator);
if (o != null) return o;
return cache.getCachedAsync(key, computer);
}