pushAll method

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

Removes all matching values from an array.

Implementation

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