setAttribute method

void setAttribute(
  1. String attribute,
  2. String info
)

Implementation

void setAttribute(String attribute, String info) {
  if (attribute == 'style') {
    style[attribute] = info;
  } else {
    attributes[attribute] = info;
  }
}