totalDataCodewords property

int get totalDataCodewords

Implementation

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