getDetector method

Future<IBarcodeDetector> getDetector()

Implementation

Future<IBarcodeDetector> getDetector() async {

  // load library
  await zxing.loadLibrary();

  // return zebra crossing detector
  return zxing.BarcodeDetector();
}