copy method

  1. @override
SELECTElement copy()
override

Copies this node.

Implementation

@override
SELECTElement copy() {
  return SELECTElement(
      attributes: attributes, options: content, commented: isCommented);
}