add method

void add(
  1. String key,
  2. num value
)

Implementation

void add(String key, num value) {
  addOp(OP_ADD, key, value);
}