analyzeImage method

Future<BarcodeCapture?> analyzeImage(
  1. String path
)

Analyze an image file.

The path points to a file on the device.

This is only supported on Android and iOS.

Returns the BarcodeCapture that was found in the image.

Implementation

Future<BarcodeCapture?> analyzeImage(String path) {
  return MobileScannerPlatform.instance.analyzeImage(path);
}