QRCodePainter constructor

QRCodePainter({
  1. required QrCode qrCode,
  2. required Color colorDark,
  3. required Color colorLight,
  4. required int margin,
  5. required int scale,
  6. ImageProvider<Object>? centerImage,
  7. int? imageHeight,
  8. int? imageWidth,
  9. String? alt,
  10. String? ariaLabel,
  11. String? title,
  12. required dynamic qrCodeURL(
    1. SafeUrl
    ),
})

Implementation

QRCodePainter({
  required this.qrCode,
  required this.colorDark,
  required this.colorLight,
  required this.margin,
  required this.scale,
  this.centerImage,
  this.imageHeight,
  this.imageWidth,
  this.alt,
  this.ariaLabel,
  this.title,
  required this.qrCodeURL,
});