getLayerIndex method

int getLayerIndex(
  1. Node? node
)

Implementation

int getLayerIndex(Node? node) {
  return nodeData[node]?.layer ?? -1;
}