QrCardReader constructor

const QrCardReader({
  1. required dynamic onScan(
    1. String code
    ),
  2. double? width,
  3. double? height,
  4. bool onlyOneScan = true,
  5. Key? key,
})

Implementation

const QrCardReader({
  required this.onScan,
  this.width,
  this.height,
  this.onlyOneScan = true,
  super.key,
});