view property

  1. @override
DataCaptureView? get view

Implementation

@override
DataCaptureView? get view => _view;
  1. @override
set view (DataCaptureView? newValue)

Implementation

@override
set view(DataCaptureView? newValue) {
  if (newValue == null) {
    _view = null;
    _controller?.dispose();
    _controller = null;
    return;
  }

  _view = newValue;
  _controller ??= _BarcodeBatchAdvancedOverlayController(this);
}