copy method

  1. @override
TABLEElement copy()
override

Copies this node.

Implementation

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