BarcodeBatchBasicOverlay.withBarcodeBatchForViewWithStyle constructor
- @Deprecated('Use BarcodeBatchBasicOverlay({BarcodeBatchBasicOverlayStyle? style}) instead')
- BarcodeBatch barcodeBatch,
- DataCaptureView? view,
- BarcodeBatchBasicOverlayStyle style
Implementation
@Deprecated('Use BarcodeBatchBasicOverlay({BarcodeBatchBasicOverlayStyle? style}) instead')
factory BarcodeBatchBasicOverlay.withBarcodeBatchForViewWithStyle(
BarcodeBatch barcodeBatch, DataCaptureView? view, BarcodeBatchBasicOverlayStyle style) {
var overlay = BarcodeBatchBasicOverlay._(barcodeBatch, style);
view?.addOverlay(overlay);
return overlay;
}