previousSibling method
The TreeWalker.previousSibling()
method moves the current
Node to its previous 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? previousSibling();