updateCache<T> method
Implementation
void updateCache<T>(
String key,
T Function(T?) updater, {
List<String>? tags,
}) {
_cacheMutator.updateCacheBySingleKey(
key,
updater(_cacheStorage.getValue(key)),
tags: tags,
);
}