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