mul method

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

Multiplies the value of the field by the specified amount

Implementation

ModifierBuilder mul(String fieldName, value) {
  _updateOperation(r'$mul', fieldName, value);
  return this;
}