QrcodeReaderView constructor

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

Implementation

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