setIncrement method

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

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

Implementation

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