QrcodeReaderView constructor

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

Implementation

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