parse static method

Future<String?> parse(
  1. String path
)

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;
}