copy method

  1. @override
DOMElement copy()
override

Copies this node.

Implementation

@override
DOMElement copy() {
  return DOMElement(tag,
      attributes: attributes, commented: isCommented, content: copyContent());
}