add method
Add an Attribute attribute
.
If an Attribute with the same key already exists, it will be overwritten.
Implementation
void add(Attribute attribute) {
_attributes[attribute.key] = attribute.value;
}
Add an Attribute attribute
.
If an Attribute with the same key already exists, it will be overwritten.
void add(Attribute attribute) {
_attributes[attribute.key] = attribute.value;
}