BarcodeBatchBasicOverlay.withBarcodeBatchForViewWithStyle constructor

BarcodeBatchBasicOverlay.withBarcodeBatchForViewWithStyle(
  1. BarcodeBatch barcodeBatch,
  2. DataCaptureView? view,
  3. BarcodeBatchBasicOverlayStyle style
)

Implementation

factory BarcodeBatchBasicOverlay.withBarcodeBatchForViewWithStyle(
    BarcodeBatch barcodeBatch, DataCaptureView? view, BarcodeBatchBasicOverlayStyle style) {
  var overlay = BarcodeBatchBasicOverlay._(barcodeBatch, style);
  overlay.view = view;
  return overlay;
}