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,
})

Implementation

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