removeWithKeys method Null safety

void removeWithKeys(
  1. List<String> keys,
  2. int? ts
)

Implementation

void removeWithKeys(List<String> keys, int? ts) {
  if (keys.isEmpty) return;
  keys.forEach((k) => removeWithKey(k, ts));
}