Attr? getAttribute(String key, {String? ns}) { if (ns != null) { return getNamedItemNS(ns, key); } else { return getNamedItem(key); } }