QrReaderView constructor

QrReaderView({
  1. Key? key,
  2. required double width,
  3. required double height,
  4. required dynamic callback(
    1. QrReaderViewController
    ),
  5. int autoFocusIntervalInMs = 500,
  6. bool torchEnabled = false,
  7. double rectWidth = 0,
  8. int isOnlyDecodeScanBoxArea = 0,
})

Implementation

QrReaderView(
    {Key? key,
    required this.width,
    required this.height,
    required this.callback,
    this.autoFocusIntervalInMs = 500,
    this.torchEnabled = false,
    this.rectWidth = 0,
    this.isOnlyDecodeScanBoxArea = 0})
    : super(key: key);