QRCodePage constructor

const QRCodePage({
  1. Key? key,
  2. required String qrData,
  3. required String logoPath,
})

Implementation

const QRCodePage({
  super.key,
  required this.qrData,
  required this.logoPath,
});