nodeIsNotLeaf method

bool nodeIsNotLeaf(
  1. String nodeId
)

Opposite of nodeIsLeaf

Implementation

bool nodeIsNotLeaf(String nodeId) => !nodeIsLeaf(nodeId);