copy method

  1. @override
THEADElement copy()
override

Copies this node.

Implementation

@override
THEADElement copy() {
  return THEADElement(
      attributes: attributes, commented: isCommented, rows: copyContent());
}