addAll method Null safety
Atomically add values
to the end of the array key
.
Implementation
void addAll(String key, Iterable values) {
if (isNullOrEmpty(key)) {
throw ArgumentError.notNull('key');
}
_LCAddOperation op = new _LCAddOperation(values);
_applyOperation(key, op);
}