NiceQrCodeDisplay constructor

const NiceQrCodeDisplay({
  1. Key? key,
  2. required String data,
  3. double size = 200,
  4. Color? backgroundColor,
  5. Color? foregroundColor,
  6. String? label,
  7. VoidCallback? onTap,
})

Implementation

const NiceQrCodeDisplay({
  super.key,
  required this.data,
  this.size = 200,
  this.backgroundColor,
  this.foregroundColor,
  this.label,
  this.onTap,
});