BarcodeBatchAdvancedOverlay.withBarcodeBatchForView constructor

  1. @Deprecated('Use the version without parameters instead.')
BarcodeBatchAdvancedOverlay.withBarcodeBatchForView(
  1. BarcodeBatch barcodeBatch,
  2. DataCaptureView? view
)

Implementation

@Deprecated('Use the version without parameters instead.')
factory BarcodeBatchAdvancedOverlay.withBarcodeBatchForView(BarcodeBatch barcodeBatch, DataCaptureView? view) {
  var overlay = BarcodeBatchAdvancedOverlay._(barcodeBatch);
  view?.addOverlay(overlay);
  return overlay;
}