totalCodewords property

int get totalCodewords

Implementation

int get totalCodewords {
  final UQrEcBlocks level = ecBlocks[0];
  int total = 0;
  for (final UQrEcb block in level.blocks) {
    total += block.count * (block.dataCodewords + level.ecCodewordsPerBlock);
  }
  return total;
}