copy method

  1. @override
DIVElement copy()
override

Copies this node.

Implementation

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