AztecCode constructor

AztecCode({
  1. bool isCompact = false,
  2. int size = 0,
  3. int layers = 0,
  4. int codeWords = 0,
  5. BitMatrix? matrix,
})

Implementation

AztecCode({
  this.isCompact = false,
  this.size = 0,
  this.layers = 0,
  this.codeWords = 0,
  this.matrix,
});