depth property
int
get
depth
Depth from root (0 = root).
Implementation
int get depth => stack.isEmpty ? 0 : stack.length - 1;
Depth from root (0 = root).
int get depth => stack.isEmpty ? 0 : stack.length - 1;