method copyInstanceAttributes


void copyInstanceAttributes()

Source

void copyInstanceAttributes() {
  _element._instanceAttributes.forEach((name, value) {
    attributes.putIfAbsent(name, () => value);
  });
}