copy method

  1. @override
TRowElement copy()
override

Copies this node.

Implementation

@override
TRowElement copy() {
  return TRowElement(
      attributes: attributes,
      commented: isCommented,
      cells: copyContent(),
      headerRow: isHeaderRow);
}