setStat method
Sets the cache CacheStat by name and key.
name: The cache namekey: The cache keystat: The cache stat
Implementation
@override
Future<void> setStat(String name, String key, CacheStat stat) {
_store[name]![key]!.stat = stat;
return Future.value();
}