numBlocks property

int get numBlocks

Implementation

int get numBlocks {
  int total = 0;
  for (final UQrEcb block in blocks) {
    total += block.count;
  }
  return total;
}