nextSibling method
The TreeWalker.nextSibling()
method moves the current
Node to its next sibling, if any, and returns the found sibling. If
there
is no such node, it returns null
and the current node is not changed.
Implementation
external Node? nextSibling();