QrCode constructor

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

Implementation

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