setDecrement method

void setDecrement(
  1. String key,
  2. num amount
)

Decrement a num value associated with a given key by the given amount

Implementation

void setDecrement(String key, num amount) {
  set(key, _ParseIncrementOperation(-amount));
}