copy method

Return a copy of this node and all its children.

Implementation

@override
XmlDocumentFragmentSyntheticImpl copy() => XmlDocumentFragmentSyntheticImpl(
      children.map((each) => each.copy()),
    );