setRawReceiptAttachment method

Future<EncryptedReceipt> setRawReceiptAttachment(
  1. String receiptId,
  2. String rev,
  3. String blobType,
  4. Uint8List attachment,
)

Implementation

Future<EncryptedReceipt> setRawReceiptAttachment(String receiptId, String rev, String blobType, Uint8List attachment) async {
	return await CardinalSdkPlatformInterface.instance.apis.receiptBasic.setRawReceiptAttachment(
		_sdkId,
		receiptId,
		rev,
		blobType,
		attachment,
	);
}