clone method

  1. @override
Bs4Element clone(
  1. bool deep
)

Returns a copy of this node.

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

Copied from Element.

Implementation

@override
Bs4Element clone(bool deep) => (_element.clone(deep)).bs4;