getRawReceiptAttachment method

Future<Uint8List> getRawReceiptAttachment(
  1. String receiptId,
  2. String attachmentId
)

Implementation

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