decrypt method

Implementation

Future<DecryptedDocument> decrypt(EncryptedDocument document) async {
	return await CardinalSdkPlatformInterface.instance.apis.document.decrypt(
		_sdkId,
		document,
	);
}