rowDepths property

Map<int, int> rowDepths

The depth of each currently active node in the tree.

This is used to properly set the TreeVicinity.

Implementation

Map<int, int> get rowDepths => _rowDepths;
void rowDepths=(Map<int, int> value)

Implementation

set rowDepths(Map<int, int> value) {
  if (_rowDepths == value) {
    return;
  }
  _rowDepths = value;
  markNeedsLayout();
}