QRCodeComponent constructor

QRCodeComponent({
  1. Key? key,
  2. required String qrData,
  3. double width = 200,
  4. double height = 200,
  5. Color color = Colors.black,
  6. Color backgroundColor = Colors.white,
  7. String? imageUrl,
  8. String? imageSrc,
})

Implementation

QRCodeComponent({
  Key? key,
  required this.qrData,
  this.width = 200,
  this.height = 200,
  this.color = Colors.black,
  this.backgroundColor = Colors.white,
  this.imageUrl,
  this.imageSrc,
}) : super(key: key);