totalBlocks property

int get totalBlocks

Implementation

int get totalBlocks {
  int count = 1;
  for (var child in children) {
    count += child.totalBlocks;
  }
  return count;
}