getAndDecryptReceiptAttachment method

Future<Uint8List> getAndDecryptReceiptAttachment(
  1. Receipt receipt,
  2. String attachmentId
)

Implementation

Future<Uint8List> getAndDecryptReceiptAttachment(Receipt receipt, String attachmentId) async {
	return await CardinalSdkPlatformInterface.instance.apis.receipt.getAndDecryptReceiptAttachment(
		_sdkId,
		receipt,
		attachmentId,
	);
}