QrcodeReaderView constructor

QrcodeReaderView({
  1. Key? key,
  2. required Future onScan(
    1. String
    ),
  3. required Widget headerWidget,
  4. Color boxLineColor = Colors.cyanAccent,
  5. required Widget helpWidget,
  6. double scanBoxRatio = 0.85,
})

Implementation

QrcodeReaderView({
  Key? key,
  required this.onScan,
  required this.headerWidget,
  this.boxLineColor = Colors.cyanAccent,
  required this.helpWidget,
  this.scanBoxRatio = 0.85,
}) : super(key: key);