removeAll method Null safety
Atomically remove all values
from the array key
.
Implementation
void removeAll(String key, Iterable values) {
if (isNullOrEmpty(key)) {
throw ArgumentError.notNull('key');
}
_LCRemoveOperation op = new _LCRemoveOperation(values);
_applyOperation(key, op);
}