copy method

  1. @override
TBODYElement copy()
override

Copies this node.

Implementation

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