CIDScanView constructor

const CIDScanView({
  1. Key? key,
  2. int width = 0,
  3. int height = 0,
  4. required CIDScanViewCreatedCallback onCIDScanViewCreated,
})

Implementation

const CIDScanView({
  Key? key,
  this.width = 0,
  this.height = 0,
  required this.onCIDScanViewCreated,
}): super(key: key);