TextOrcScan constructor

const TextOrcScan({
  1. Key? key,
  2. double painBoxLeftOff = 4,
  3. double painBoxRightOff = 4,
  4. double painBoxBottomOff = 2.7,
  5. double painBoxTopOff = 2.7,
  6. double boxRadius = 0,
  7. required double widgetHeight,
  8. required Function getScannedText,
  9. Paint? paintboxCustom,
  10. Duration throttlingInterval = const Duration(milliseconds: 900),
})

Implementation

const TextOrcScan({
  Key? key,
  this.painBoxLeftOff = 4,
  this.painBoxRightOff = 4,
  this.painBoxBottomOff = 2.7,
  this.painBoxTopOff = 2.7,
  this.boxRadius = 0,
  required this.widgetHeight,
  required this.getScannedText,
  this.paintboxCustom,
  this.throttlingInterval = const Duration(milliseconds: 900),
}) : super(key: key);