populateMultiCache method
void
populateMultiCache(
- K key,
- C context,
- M cacheInstantiator(),
- V value,
Implementation
void populateMultiCache(
K key,
C context,
M Function() cacheInstantiator,
V value,
) {
var cache = getCache(context, cacheInstantiator);
cache[key] = value;
}