UQrBitMatrixParser constructor
UQrBitMatrixParser(
- UBitMatrix _bits
Implementation
UQrBitMatrixParser(this._bits) {
final int dimension = _bits.height;
if (dimension < 21 || (dimension & 0x03) != 1) throw const UCodeDecodeException("Bad QR dimension");
}