parse static method
Attempts to decode a QR code from the given image path using native code.
Implementation
static Future<String?> parse(String path) async {
final String? result = await _channel.invokeMethod('parse', {'path': path});
return result;
}