ScannerBox constructor

const ScannerBox({
  1. Key? key,
  2. Widget? child,
  3. Color? borderColor,
  4. Color? scannerColor,
  5. Size? size,
  6. Size? boxSize,
  7. double? hornStrokeWidth,
  8. double? scannerStrokeWidth,
})

Implementation

const ScannerBox(
    {Key? key,
    this.child,
    this.borderColor,
    this.scannerColor,
    this.size,
    this.boxSize,
    this.hornStrokeWidth,
    this.scannerStrokeWidth})
    : super(key: key);