hasDescendantCells method

bool hasDescendantCells()

Implementation

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