NiceQRCode constructor

const NiceQRCode({
  1. Key? key,
  2. required String data,
  3. double size = 200,
  4. Color? color,
  5. Color? backgroundColor,
  6. NiceQRErrorCorrection errorCorrection = NiceQRErrorCorrection.medium,
  7. String? label,
})

Implementation

const NiceQRCode({
  super.key,
  required this.data,
  this.size = 200,
  this.color,
  this.backgroundColor,
  this.errorCorrection = NiceQRErrorCorrection.medium,
  this.label,
});