operator []= method

void operator []=(
  1. String key,
  2. double value
)

Overridden operator that allows to "set" the property value of a specific key without calling the setProperty method.

Sets the value of the given key to the given value.

Implementation

void operator []=(String key, double value) {
  setProperty(key, value);
}