operator []= method

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

Set an attribute by name.

Implementation

operator[]= (String attribute, String value) {
	attributes[attribute] = value;
}