getWithKey method
Implementation
T? getWithKey(String key) {
final data = _cachedDataMap[key];
if (data == null || data.isRemoved) return null;
return data.value;
}
T? getWithKey(String key) {
final data = _cachedDataMap[key];
if (data == null || data.isRemoved) return null;
return data.value;
}