getQrCodeByImagePath static method

Future<List<String>> getQrCodeByImagePath(
  1. String path
)

从相机获取二维码并返回扫码信息 Get the qrcode data from photo album

Implementation

static Future<List<String>> getQrCodeByImagePath(String path) async {
  return QrcodeFlutterPlatform.instance.getQrCodeByImagePath(path);
}