removeAll method Null safety

void removeAll(
  1. int ts
)

Implementation

void removeAll(int ts) {
  _cachedDataMap.forEach((k, v) {
    v.isRemoved = true;
    v.ts = ts;
  });

  (policy as PeriodEviction).stop();
}