resumeCamera method

Future<void> resumeCamera()

Resume camera, also start detection if method startScan was called before pause.

Can throw PlatformException if camera is not initialized.

Implementation

Future<void> resumeCamera() async {
  return _barcodeScannerState?._resumeCamera();
}