hasDescendantCells method
Implementation
bool hasDescendantCells() {
if (cells.isNotEmpty) return true;
for (var group in groups) {
if (group.hasDescendantCells()) return true;
}
return false;
}
bool hasDescendantCells() {
if (cells.isNotEmpty) return true;
for (var group in groups) {
if (group.hasDescendantCells()) return true;
}
return false;
}