getQRCodeAsImage static method

Future<BranchResponse> getQRCodeAsImage({
  1. required BranchUniversalObject buo,
  2. required BranchLinkProperties linkProperties,
  3. required BranchQrCode qrCode,
})

Creates a Branch QR Code image. Returns the QR code as a Image.

Implementation

static Future<BranchResponse> getQRCodeAsImage(
    {required BranchUniversalObject buo,
    required BranchLinkProperties linkProperties,
    required BranchQrCode qrCode}) async {
  return FlutterBranchSdkPlatform.instance
      .getQRCodeAsImage(buo: buo, linkProperties: linkProperties, qrCodeSettings: qrCode);
}