encryptAndSetReceiptAttachment method

Future<EncryptedReceipt> encryptAndSetReceiptAttachment(
  1. Receipt receipt,
  2. String blobType,
  3. Uint8List attachment
)

Implementation

Future<EncryptedReceipt> encryptAndSetReceiptAttachment(Receipt receipt, String blobType, Uint8List attachment) async {
	return await CardinalSdkPlatformInterface.instance.apis.receipt.encryptAndSetReceiptAttachment(
		_sdkId,
		receipt,
		blobType,
		attachment,
	);
}