address property

List<int> address

address returns a list of integers, each of which the position referred to the parent column, each nesting adds an element to the list, this element will be the address of the column with respect to the parent.

Implementation

List<int> get address => (parent?.address ?? [])..add(index ?? -1);