BarcodeBatchBasicOverlay.withBarcodeBatchForViewWithStyle constructor

  1. @Deprecated('Use BarcodeBatchBasicOverlay({BarcodeBatchBasicOverlayStyle? style}) instead')
BarcodeBatchBasicOverlay.withBarcodeBatchForViewWithStyle(
  1. BarcodeBatch barcodeBatch,
  2. DataCaptureView? view,
  3. 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;
}