copy method

  1. @override
OPTIONElement copy()
override

Copies this node.

Implementation

@override
OPTIONElement copy() {
  return OPTIONElement(
    attributes: attributes,
    text: text,
  );
}