descendantsIndexes property
Implementation
List<int> get descendantsIndexes {
int numberOfVisible = numberOfVisibleDescendants();
int startIndex = _index + 1;
List<int> indexes = [];
for (int i = startIndex; i < startIndex + numberOfVisible; i++) {
indexes.add(i);
}
return indexes;
}