totalCodewords property

int get totalCodewords

Implementation

int get totalCodewords {
  int total = 0;
  for (final List<int> block in ecBlocks) {
    total += block[1] * (block[2] + block[0]);
  }
  return total;
}