set<T> method
void
set<T>(})
override
Implementation
@override
void set<T>(String key, T data, {CacheType type = CacheType.global, Duration? ttl}) {
_cache[key] = CacheData<T>(type, data, ttl: ttl);
}