arrayRemove static method
Implementation
static bool arrayRemove(String key, Iterable value, {Object? options}) {
try {
Set current = Set.of(get(key, [], options: options));
current.removeAll(value);
return set(key, current.toList(), options: options);
} catch (msg) {
_log(msg);
return false;
}
}