depth property

int get depth

Distance between this node and the root node.

Implementation

int get depth => _depth;
  1. @protected
set depth (int val)

Implementation

@protected
set depth(int val) {
  _depth = val;
}