setRemoveAll method

void setRemoveAll(
  1. String key,
  2. List elements
)

Removes all instances of the elements contained in a List from the array associated with a given key

Implementation

void setRemoveAll(String key, List<dynamic> elements) {
  set(key, _ParseRemoveOperation(elements));
}