SingleCameraScan constructor

const SingleCameraScan({
  1. Key? key,
  2. MobileScannerController? controller,
  3. required dynamic onAdd(
    1. String?
    ),
  4. required bool isScanning,
  5. required Function onStartClear,
  6. required Function onEndClear,
  7. required TextEditingController startController,
  8. required TextEditingController endController,
  9. required String scanType,
  10. required Function onDispose,
})

Implementation

const SingleCameraScan({
  super.key,
  this.controller,
  required this.onAdd,
  required this.isScanning,
  required this.onStartClear,
  required this.onEndClear,
  required this.startController,
  required this.endController,
  required this.scanType,
  required this.onDispose,
});