remove method Null safety
- String key,
- dynamic value
Atomically remove all value
from the array key
.
Implementation
void remove(String key, dynamic value) {
if (isNullOrEmpty(key)) {
throw ArgumentError.notNull('key');
}
if (value == null) {
throw ArgumentError.notNull('value');
}
_LCRemoveOperation op = new _LCRemoveOperation([value]);
_applyOperation(key, op);
}