tryDecryptAttachment method

Future<Uint8List?> tryDecryptAttachment(
  1. Document document,
  2. Uint8List encryptedAttachment
)

Implementation

Future<Uint8List?> tryDecryptAttachment(Document document, Uint8List encryptedAttachment) async {
	return await CardinalSdkPlatformInterface.instance.apis.document.tryDecryptAttachment(
		_sdkId,
		document,
		encryptedAttachment,
	);
}