PrettyQrView constructor

  1. @literal
const PrettyQrView({
  1. required QrImage qrImage,
  2. Key? key,
  3. PrettyQrDecoration? decoration,
})

Creates a widget that displays an QR symbol obtained from a qrImage.

Implementation

@literal
const PrettyQrView({
  required this.qrImage,
  super.key,
  this.decoration,
});