QrCode constructor

QrCode({
  1. String? alignment,
  2. num? size,
  3. num? errorCorrection,
  4. String? type,
  5. String? data,
  6. String? operator,
})

Implementation

QrCode({
  this.alignment,
  this.size,
  this.errorCorrection,
  this.type,
  this.data,
  this.operator,
});