operator []= method

void operator []=(
  1. String variable,
  2. D value
)

Implementation

void operator []=(String variable, D value) {
  _values[variable] = value;
}