pull method

ModifierBuilder pull(
  1. String fieldName,
  2. dynamic value
)

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

Implementation

ModifierBuilder pull(String fieldName, value) {
  _updateOperation('\$pull', fieldName, value);
  return this;
}