QrReaderView constructor

QrReaderView({
  1. required double width,
  2. required double height,
  3. required dynamic callback(
    1. QrReaderViewController
    ),
  4. int autoFocusIntervalInMs = 500,
  5. bool torchEnabled = false,
})

Implementation

QrReaderView({
  required this.width,
  required this.height,
  required this.callback,
  this.autoFocusIntervalInMs = 500,
  this.torchEnabled = false,
});