UQrBitMatrixParser constructor

UQrBitMatrixParser(
  1. UBitMatrix _bits
)

Implementation

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