getOtherNode method

Node? getOtherNode(
  1. Node node
)

Given a Node, return the node at the other end of this link. @param {Node} node @return {Node} This may return the same node, if the link is reflexive.

Implementation

_i3.Node? getOtherNode(_i3.Node node) => _i4.callMethod(
      this,
      'getOtherNode',
      [node],
    );