numBlocks property

int numBlocks

Implementation

int get numBlocks {
  int total = 0;
  for (ECB ecBlock in _ecBlocks) {
    total += ecBlock.count;
  }
  return total;
}