void removeAttribute(Element element, String name)

Source

void removeAttribute(Element element, String name) {
  //there is no removeAttribute method as of now in Dart:
  //https://code.google.com/p/dart/issues/detail?id=19934
  element.attributes.remove(name);
}