from static method
Creates a DOMNode from dynamic parameter entry
.
entry
Can be a DOMNode, a String with HTML, a Text,
a Function or an external element.
Implementation
static TABLEElement? from(Object? entry) {
if (entry == null) return null;
if (_domHTML.isHtmlNode(entry)) {
entry = _domHTML.toDOMNode(entry);
}
if (entry is TABLEElement) return entry;
if (entry is DOMElement) {
_checkTag('table', entry);
return TABLEElement(
attributes: entry._attributes,
body: entry._content,
commented: entry.isCommented);
}
return null;
}