unset method

void unset(
  1. List<String> fields
)

Implementation

void unset(List<String> fields) {
  var map = {};
  fields.forEach((f) {
    map[f] = "";
  });
  _addExpression("\$unset", map);
}