getQRCodeAsImage static method
Future<BranchResponse>
getQRCodeAsImage({
- required BranchUniversalObject buo,
- required BranchLinkProperties linkProperties,
- 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);
}