clone method

  1. @DomName('Node.cloneNode')
  2. @DocsEditable()
Node clone(bool deep)

Returns a copy of this node.

If deep is true, then all of this node's children and descendents are copied as well. If deep is false, then only this node is copied.

Other resources

Source

@DomName('Node.cloneNode')
@DocsEditable()
Node clone(bool deep) =>
    _blink.BlinkNode.instance.cloneNode_Callback_1_(this, deep);

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/1.24.3/dart-html/Node/clone.html