merge method Null safety

void merge(
  1. CachedDataMap<T> others
)

Implementation

void merge(CachedDataMap<T> others) {
  others._cachedDataMap.forEach((k, v) {
    addWithKey(k, v.value, v.ts);
  });
}