pullAll method

ModifierBuilder pullAll(
  1. String fieldName,
  2. List values
)

The pull operator removes from an existing array all instances of values that match a specified condition.

Implementation

ModifierBuilder pullAll(String fieldName, List values) {
  _updateOperation('\$pullAll', fieldName, values);
  return this;
}