depth property

int get depth

Depth from root (0 = root).

Implementation

int get depth => stack.isEmpty ? 0 : stack.length - 1;