getWithKey method Null safety

T? getWithKey(
  1. String key
)

Implementation

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