QRCodeDialog constructor

const QRCodeDialog({
  1. Key? key,
  2. required String data,
  3. String? title,
  4. String? subtitle,
  5. double size = 240,
})

Creates a QRCodeDialog.

Implementation

const QRCodeDialog({
  super.key,
  required this.data,
  this.title,
  this.subtitle,
  this.size = 240,
});