append method

  1. @override
void append(
  1. Bs4Element element
)

Adds an element just before the closing tags of the current element.

If you want to pass Node instead Bs4Element, you can do it via bs4element.element.append(node).

Implementation

@override
void append(Bs4Element element) => _element.append(element._element);