void set(String key, dynamic data, {Duration? ttl}) { _map[key] = _CacheEntry(data, ttl == null ? null : DateTime.now().add(ttl)); }